Skip to content

Commit

Permalink
Removing reference operators.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Jul 10, 2010
1 parent a04c87c commit 5c4d46a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cake/libs/configure.php
Expand Up @@ -963,7 +963,7 @@ private static function __find($file, $recursive = true) {
if (!class_exists('Folder')) {
require LIBS . 'folder.php';
}
$Folder =& new Folder();
$Folder = new Folder();
$directories = $Folder->tree($path, array('.svn', '.git', 'CVS', 'tests', 'templates'), 'dir');
sort($directories);
self::$__paths[$path] = $directories;
Expand Down Expand Up @@ -1197,7 +1197,7 @@ private static function __list($path, $suffix = false, $extension = false) {
require LIBS . 'folder.php';
}
$items = array();
$Folder =& new Folder($path);
$Folder = new Folder($path);
$contents = $Folder->read(false, true);

if (is_array($contents)) {
Expand Down

0 comments on commit 5c4d46a

Please sign in to comment.