bug #1798627 [GUI] Wrong storage engine displayed

This commit is contained in:
Marc Delisle
2007-09-20 16:25:32 +00:00
parent 874e16fc45
commit f9d967ecd2
2 changed files with 2 additions and 1 deletions

View File

@@ -105,7 +105,7 @@ class PMA_StorageEngine
$output .= ' <option value="' . htmlspecialchars($key). '"'
. (empty($details['Comment'])
? '' : ' title="' . htmlspecialchars($details['Comment']) . '"')
. ($key == $selected || (empty($selected) && $details['Support'] == 'DEFAULT')
. (strtolower($key) == $selected || (empty($selected) && $details['Support'] == 'DEFAULT')
? ' selected="selected"' : '') . '>' . "\n"
. ' ' . htmlspecialchars($details['Engine']) . "\n"
. ' </option>' . "\n";