Changeset 8261
- Timestamp:
- 04/04/08 11:13:47 (8 months ago)
- Files:
-
- branches/1.0/lib/util/sfFinder.class.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.0/lib/util/sfFinder.class.php
r8259 r8261 4 4 * This file is part of the symfony package. 5 5 * (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com> 6 * 6 * 7 7 * For the full copyright and license information, please view the LICENSE 8 8 * file that was distributed with this source code. … … 310 310 $here_dir = getcwd(); 311 311 $numargs = func_num_args(); 312 $arg_list = func_get_args(); 312 $arg_list = func_get_args(); 313 313 314 314 // first argument is an array? … … 338 338 } 339 339 340 $dir = str_replace(array('/', '\\'), '/', $dir); 341 340 342 if ($this->relative) 341 343 { 342 $files = array_merge($files, str_replace($dir.DIRECTORY_SEPARATOR, '', $this->search_in($dir)));344 $files = array_merge($files, str_replace($dir.DIRECTORY_SEPARATOR, '', str_replace(array('/', '\\'), '/', $this->search_in($dir)))); 343 345 } 344 346 else