Navigation Menu

Skip to content

Commit

Permalink
bug #3995 Drizzle server charset notice
Browse files Browse the repository at this point in the history
  • Loading branch information
lem9 committed Oct 6, 2013
1 parent e03797c commit a498a6c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Expand Up @@ -4,6 +4,7 @@ phpMyAdmin - ChangeLog
4.0.9.0 (not yet released) 4.0.9.0 (not yet released)
- bug #4104 Can't edit updatable view when searching - bug #4104 Can't edit updatable view when searching
- bug #4108 Missing refresh by deleting databases - bug #4108 Missing refresh by deleting databases
- bug #3995 Drizzle server charset notice


4.0.8.0 (2013-10-06) 4.0.8.0 (2013-10-06)
- bug #3988 Rename view is not working - bug #3988 Rename view is not working
Expand Down
8 changes: 5 additions & 3 deletions index.php
Expand Up @@ -258,9 +258,11 @@


echo ' <li id="li_select_mysql_charset">'; echo ' <li id="li_select_mysql_charset">';
echo ' ' . __('Server charset') . ': ' echo ' ' . __('Server charset') . ': '
. ' <span lang="en" dir="ltr">' . ' <span lang="en" dir="ltr">';
. ' ' . $mysql_charsets_descriptions[$mysql_charset_map['utf-8']] . "\n" if (! PMA_DRIZZLE) {
. ' (' . $mysql_charset_map['utf-8'] . ')' . "\n" echo ' ' . $mysql_charsets_descriptions[$mysql_charset_map['utf-8']] . "\n";
}
echo ' (' . $mysql_charset_map['utf-8'] . ')' . "\n"
. ' </span>' . "\n" . ' </span>' . "\n"
. ' </li>' . "\n"; . ' </li>' . "\n";
echo ' </ul>'; echo ' </ul>';
Expand Down
2 changes: 1 addition & 1 deletion libraries/sqlparser.lib.php
Expand Up @@ -43,7 +43,7 @@
/** /**
* Charset information * Charset information
*/ */
if (!defined('TESTSUITE')) { if (!defined('TESTSUITE') && ! PMA_DRIZZLE) {
include_once './libraries/mysql_charsets.lib.php'; include_once './libraries/mysql_charsets.lib.php';
} }
if (! isset($mysql_charsets)) { if (! isset($mysql_charsets)) {
Expand Down

0 comments on commit a498a6c

Please sign in to comment.