Removing recursive directory search, not very stable right now

This commit is contained in:
Klaus Silveira
2012-05-25 18:20:55 -03:00
parent fec646062e
commit e4d8c5ef7f

View File

@@ -85,10 +85,6 @@ class Client
$repositories[] = array('name' => $file->getFilename(), 'path' => $file->getPathname(), 'description' => $description); $repositories[] = array('name' => $file->getFilename(), 'path' => $file->getPathname(), 'description' => $description);
continue; continue;
} }
if ($file->isDir()) {
$repositories = $this->recurseDirectory($file->getPathname());
}
} }
return $repositories; return $repositories;