Ooops, bad parenthesis.

This commit is contained in:
Michal Čihař
2008-09-03 15:41:47 +00:00
parent 5fe66c5891
commit 742d4d4ed9

View File

@@ -272,7 +272,7 @@ function PMA_pluginGetOneOption($section, $plugin_name, $id, &$opt)
$ret .= 'UNKNOWN OPTION ' . $opt['type'] . ' IN IMPORT PLUGIN ' . $plugin_name . '!';
}
if (isset($opt['doc'])) {
if (count($opt['doc'] == 3)) {
if (count($opt['doc']) == 3) {
$ret .= PMA_showMySQLDocu($opt['doc'][0], $opt['doc'][1], false, $opt['doc'][2]);
} else {
$ret .= PMA_showMySQLDocu($opt['doc'][0], $opt['doc'][1]);