Fixing multiple classes loading in App::import()

This commit is contained in:
Jose Lorenzo Rodriguez 2011-03-11 18:59:08 -04:30
parent 5a57f2c3c3
commit ebd8d1d0c2

View file

@ -536,6 +536,7 @@ class App {
return false; return false;
} }
} }
return true;
} }
$originalType = $type = strtolower($type); $originalType = $type = strtolower($type);
@ -563,8 +564,9 @@ class App {
if ($plugin) { if ($plugin) {
$plugin .= '.'; $plugin .= '.';
} }
App::uses(Inflector::camelize($name), $plugin . $type); $name = Inflector::camelize($name);
return (bool) self::load($name); App::uses($name, $plugin . $type);
return class_exists($name);
} }
if ($type == 'file' && !empty($file)) { if ($type == 'file' && !empty($file)) {