make font size user configurable - forgot to change locale string

This commit is contained in:
Sebastian Mendel
2006-07-31 13:55:13 +00:00
parent f106d9552e
commit f45e14f2a3

View File

@@ -931,7 +931,7 @@ class PMA_Config
$current_size = $_SESSION['PMA_Config']->get('fontsize'); $current_size = $_SESSION['PMA_Config']->get('fontsize');
$options = PMA_Config::getFontsizeOptions($current_size); $options = PMA_Config::getFontsizeOptions($current_size);
$return = '<label for="select_fontsize">' . $GLOBALS['strFont_size'] . ':</label>' . "\n"; $return = '<label for="select_fontsize">' . $GLOBALS['strFontSize'] . ':</label>' . "\n";
$return .= '<select name="fontsize" id="select_fontsize" onchange="this.form.submit();">' . "\n"; $return .= '<select name="fontsize" id="select_fontsize" onchange="this.form.submit();">' . "\n";
foreach ($options as $option) { foreach ($options as $option) {
$return .= '<option value="' . $option . '"'; $return .= '<option value="' . $option . '"';