Fix typo causing notice errors.

Fixes #2658
This commit is contained in:
mark_story 2012-03-11 08:17:01 -04:00
parent 83a29f054e
commit 4b3d8612e9

View file

@ -805,7 +805,7 @@ class App {
if ($plugin) { if ($plugin) {
$key = 'plugin.' . $name; $key = 'plugin.' . $name;
} }
return isset(self::$_map[$key]) ? self::$_map[$name] : false; return isset(self::$_map[$key]) ? self::$_map[$key] : false;
} }
/** /**