fix undefined variable

This commit is contained in:
Dieter Adriaenssens 2013-01-25 16:43:59 +01:00
parent 525e9d0c04
commit 90e0ffe7da

View File

@ -540,7 +540,7 @@ function PMA_generateDropdown(
$dropdown_question, $select_name, $choices, $selected_value
) {
$html_output .= htmlspecialchars($dropdown_question) . '  '
$html_output = htmlspecialchars($dropdown_question) . '  '
. '<select name="' . htmlspecialchars($select_name) . '">' . "\n";
foreach ($choices as $one_value => $one_label) {