Changeset 29525
- Timestamp:
- 05/19/10 15:01:43 (3 years ago)
- Files:
-
- branches/1.3/lib/util/sfToolkit.class.php (modified) (1 diff)
- branches/1.4/lib/util/sfToolkit.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.3/lib/util/sfToolkit.class.php
r23810 r29525 101 101 public static function clearGlob($pattern) 102 102 { 103 $files = glob($pattern); 103 if (false === $files = glob($pattern)) 104 { 105 return; 106 } 104 107 105 108 // order is important when removing directories branches/1.4/lib/util/sfToolkit.class.php
r23945 r29525 101 101 public static function clearGlob($pattern) 102 102 { 103 $files = glob($pattern); 103 if (false === $files = glob($pattern)) 104 { 105 return; 106 } 104 107 105 108 // order is important when removing directories