Changeset 2977
- Timestamp:
- 12/08/06 20:15:19 (2 years ago)
- Files:
-
- tools/lime/lib/lime.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
tools/lime/lib/lime.php
r2868 r2977 864 864 function register_glob($glob) 865 865 { 866 foreach (glob($glob) as $file) 867 { 868 $this->files[] = realpath($file); 866 if ($dirs = glob($glob)) 867 { 868 foreach ($dirs as $file) 869 { 870 $this->files[] = realpath($file); 871 } 869 872 } 870 873 }