diff --git a/libraries/config/FormDisplay.tpl.php b/libraries/config/FormDisplay.tpl.php index ac1fdf7632..47e570df1b 100644 --- a/libraries/config/FormDisplay.tpl.php +++ b/libraries/config/FormDisplay.tpl.php @@ -66,7 +66,7 @@ function PMA_displayTabsTop($tabs) $htmlOutput = Template::get('list/unordered')->render( array( - 'class' => 'tabs', + 'class' => 'tabs responsivetable', 'items' => $items, ) ); @@ -245,11 +245,11 @@ function PMA_displayInput($path, $name, $type, $value, $description = '', switch ($type) { case 'text': - $htmlOutput .= ''; break; case 'password': - $htmlOutput .= ''; break; case 'short_text': @@ -271,7 +271,7 @@ function PMA_displayInput($path, $name, $type, $value, $description = '', . ($value ? ' checked="checked"' : '') . ' />'; break; case 'select': - $htmlOutput .= ''; $escape = !(isset($opts['values_escaped']) && $opts['values_escaped']); $values_disabled = isset($opts['values_disabled']) ? array_flip($opts['values_disabled']) : array(); @@ -307,7 +307,7 @@ function PMA_displayInput($path, $name, $type, $value, $description = '', $htmlOutput .= ''; break; case 'list': - $htmlOutput .= ''; break; }