Fixes #783 - Logic error

This commit is contained in:
Samuel Georges 2014-11-21 08:29:40 +11:00
parent 0c812a59e5
commit 48e2dddc66
1 changed files with 1 additions and 1 deletions

View File

@ -508,7 +508,7 @@ class PluginManager
*/
public function getDependencies($plugin)
{
if (is_string($plugin) && (!$plugin = $this->findByIdentifier($identifer))) {
if (is_string($plugin) && (!$plugin = $this->findByIdentifier($plugin))) {
return false;
}