diff --git a/ChangeLog b/ChangeLog index 86b53462c..fb4ab5d87 100755 --- a/ChangeLog +++ b/ChangeLog @@ -6,8 +6,9 @@ $Id$ $Source$ 2006-03-16 Michal Čihař - * libraries/select_server.lib.php: Move end of fieldset to correct place - after button (patch #1450559). + * libraries/select_server.lib.php: Move end of fieldset to correct place + after button (patch #1450559). + * libraries/plugin_interface.lib.php: Add support for hidden inputs. 2006-03-15 Michal Čihař * libraries/export/htmlexcel.php: Fix output handling (bug #1450555). diff --git a/libraries/plugin_interface.lib.php b/libraries/plugin_interface.lib.php index 333a1447c..97c054e38 100644 --- a/libraries/plugin_interface.lib.php +++ b/libraries/plugin_interface.lib.php @@ -205,6 +205,9 @@ function PMA_pluginGetOneOption($section, $plugin_name, $id, &$opt) $ret .= '>' . PMA_getString($val) . ''; } $ret .= ''; + } elseif ($opt['type'] == 'hidden') { + $ret .= ''; } else { /* This should be seen only by plugin writers, so I do not thing this * needs translation. */