From: Jehan-Guillaume (ioguix) de Rorthais Date: Mon, 15 Apr 2013 21:58:20 +0000 (+0200) Subject: Fix typo in variable name X-Git-Tag: REL_5-6-0~61 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=3722330ed262b52d51b0a45882033942e4baff4e;p=phppgadmin.git Fix typo in variable name It only concerns an fatal error message, no bad impacts --- 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];