Be more verbose on error.

This commit is contained in:
Michal Čihař
2006-04-26 14:14:03 +00:00
parent 1d3b486a20
commit b71eb94625
2 changed files with 2 additions and 1 deletions

View File

@@ -8,6 +8,7 @@ $Source$
2006-04-26 Michal Čihař <michal@cihar.com>
* libraries/plugin_interface.lib.php:
- Display information that there are no settings.
- Be more verbose on error.
2006-04-26 Sebastian Mendel <cybot_tm@users.sourceforge.net>
* themes/*:

View File

@@ -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 .= '<td colspan="2">';
$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]);