Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <mcihar@novell.com>2011-06-03 17:38:02 +0400
committerMichal Čihař <mcihar@novell.com>2011-06-03 17:38:02 +0400
commit0841fce11adc5e4029eea41c256f403a7bd56f98 (patch)
tree065b63c078e775faeae509e780025fa1af013586 /main.php
parent3a87a1b4476fd04124b5d4bcc47408b9e6f6a394 (diff)
Another use of $charset
Diffstat (limited to 'main.php')
-rw-r--r--main.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.php b/main.php
index c4c2b2ae58..c508bd0f09 100644
--- a/main.php
+++ b/main.php
@@ -168,8 +168,8 @@ if ($server > 0 && $GLOBALS['cfg']['ShowServerInfo']) {
echo ' <li id="li_select_mysql_charset">';
echo ' ' . __('MySQL charset') . ': '
. ' <span xml:lang="en" dir="ltr">'
- . ' ' . $mysql_charsets_descriptions[$mysql_charset_map[strtolower($charset)]] . "\n"
- . ' (' . $mysql_charset_map[strtolower($charset)] . ')' . "\n"
+ . ' ' . $mysql_charsets_descriptions[$mysql_charset_map['utf-8']] . "\n"
+ . ' (' . $mysql_charset_map['utf-8'] . ')' . "\n"
. ' </span>' . "\n"
. ' </li>' . "\n";
echo ' </ul>';