From: Jehan-Guillaume (ioguix) de Rorthais Date: Mon, 15 Apr 2013 21:58:20 +0000 (+0200) Subject: Fix typo in variable name X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=83d1952e13bcc442899b19d14fc039eb9cd569b3;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];