diff --git a/ChangeLog b/ChangeLog index 967a94d4e..542ff8c1b 100755 --- a/ChangeLog +++ b/ChangeLog @@ -8,6 +8,7 @@ $Source$ 2006-04-26 Michal Čihař * libraries/plugin_interface.lib.php: - Display information that there are no settings. + - Be more verbose on error. 2006-04-26 Sebastian Mendel * themes/*: diff --git a/libraries/plugin_interface.lib.php b/libraries/plugin_interface.lib.php index 789eaff24..62715011c 100644 --- a/libraries/plugin_interface.lib.php +++ b/libraries/plugin_interface.lib.php @@ -212,7 +212,7 @@ function PMA_pluginGetOneOption($section, $plugin_name, $id, &$opt) /* This should be seen only by plugin writers, so I do not thing this * needs translation. */ $ret .= ''; - $ret .= 'UNKNOWN OPTION IN IMPORT PLUGIN ' . $plugin_name . '!'; + $ret .= 'UNKNOWN OPTION ' . $opt['type'] . ' IN IMPORT PLUGIN ' . $plugin_name . '!'; } if (isset($opt['doc'])) { $ret .= PMA_showMySQLDocu($opt['doc'][0], $opt['doc'][1]);