diff options
author | Jehan-Guillaume (ioguix) de Rorthais | 2013-04-15 21:58:20 +0000 |
---|---|---|
committer | Jehan-Guillaume (ioguix) de Rorthais | 2013-04-15 22:00:42 +0000 |
commit | 3722330ed262b52d51b0a45882033942e4baff4e (patch) | |
tree | 8f22cf3e59daba52476defbc0630115992035b33 | |
parent | 2a1444ea4e76523e125a3fe3599f5315a1812b47 (diff) |
Fix typo in variable name
It only concerns an fatal error message, no bad impacts
-rw-r--r-- | classes/PluginManager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/PluginManager.php b/classes/PluginManager.php index 33603c75..203808f1 100644 --- a/classes/PluginManager.php +++ b/classes/PluginManager.php @@ -116,7 +116,7 @@ class PluginManager { if (!isset($this->plugins_list[$plugin_name])) { // Show an error and stop the application - printf($lang['strpluginnotfound']."\t\n", $name); + printf($lang['strpluginnotfound']."\t\n", $plugin_name); exit; } $plugin = $this->plugins_list[$plugin_name]; |