Removed undefined variable in App::core, made test pass on Windows.

Signed-off-by: mark_story <mark@mark-story.com>
This commit is contained in:
evilbloodydemon 2011-04-17 12:30:31 +04:00 committed by mark_story
parent 1962e40c9a
commit df57b15f89

View file

@ -389,9 +389,7 @@ class App {
* @return string full path to package
*/
public static function core($type) {
if ($type) {
return isset($paths[$type]) ? $paths[$type] : array(LIBS . $type . DS);
}
return array(LIBS . str_replace('/', DS, $type) . DS);
}
/**