bug #2080963 [charset] Clarify doc and improved code
This commit is contained in:
@@ -207,17 +207,17 @@ echo PMA_pluginGetJavascript($export_list);
|
||||
echo ' <label for="select_charset_of_file">'
|
||||
. $strCharsetOfFile . '</label>' . "\n";
|
||||
|
||||
$temp_charset = reset($cfg['AvailableCharsets']);
|
||||
echo ' <select id="select_charset_of_file" name="charset_of_file" size="1">' . "\n";
|
||||
foreach ($cfg['AvailableCharsets'] as $key => $temp_charset) {
|
||||
echo ' <option value="' . $temp_charset . '"';
|
||||
reset($cfg['AvailableCharsets']);
|
||||
echo '<select id="select_charset_of_file" name="charset_of_file" size="1">';
|
||||
foreach ($cfg['AvailableCharsets'] as $temp_charset) {
|
||||
echo '<option value="' . $temp_charset . '"';
|
||||
if ((empty($cfg['Export']['charset']) && $temp_charset == $charset)
|
||||
|| $temp_charset == $cfg['Export']['charset']) {
|
||||
echo ' selected="selected"';
|
||||
}
|
||||
echo '>' . $temp_charset . '</option>' . "\n";
|
||||
echo '>' . $temp_charset . '</option>';
|
||||
} // end foreach
|
||||
echo ' </select>';
|
||||
echo '</select>';
|
||||
} // end if
|
||||
?>
|
||||
</div>
|
||||
|
@@ -83,22 +83,17 @@ if (!empty($cfg['UploadDir'])) {
|
||||
// charset of file
|
||||
echo '<div class="formelementrow">' . "\n";
|
||||
if ($cfg['AllowAnywhereRecoding'] && $allow_recoding) {
|
||||
echo '<label for="charset_of_file">' . $strCharsetOfFile . '</label>' . "\n";
|
||||
$temp_charset = reset($cfg['AvailableCharsets']);
|
||||
echo ' <select id="charset_of_file" name="charset_of_file" size="1">' . "\n"
|
||||
. ' <option value="' . htmlentities($temp_charset) . '"';
|
||||
if ($temp_charset == $charset) {
|
||||
echo ' selected="selected"';
|
||||
}
|
||||
echo '>' . htmlentities($temp_charset) . '</option>' . "\n";
|
||||
while ($temp_charset = next($cfg['AvailableCharsets'])) {
|
||||
echo ' <option value="' . htmlentities($temp_charset) . '"';
|
||||
echo '<label for="charset_of_file">' . $strCharsetOfFile . '</label>';
|
||||
reset($cfg['AvailableCharsets']);
|
||||
echo '<select id="charset_of_file" name="charset_of_file" size="1">';
|
||||
foreach ($cfg['AvailableCharsets'] as $temp_charset) {
|
||||
echo '<option value="' . htmlentities($temp_charset) . '"';
|
||||
if ($temp_charset == $charset) {
|
||||
echo ' selected="selected"';
|
||||
}
|
||||
echo '>' . htmlentities($temp_charset) . '</option>' . "\n";
|
||||
echo '>' . htmlentities($temp_charset) . '</option>';
|
||||
}
|
||||
echo ' </select><br />' . "\n" . ' ';
|
||||
echo ' </select><br />';
|
||||
} else {
|
||||
echo '<label for="charset_of_file">' . $strCharsetOfFile . '</label>' . "\n";
|
||||
echo PMA_generateCharsetDropdownBox(PMA_CSDROPDOWN_CHARSET, 'charset_of_file', 'charset_of_file', 'utf8', FALSE);
|
||||
|
Reference in New Issue
Block a user