removed MySQL < 5 code

This commit is contained in:
Sebastian Mendel
2007-10-02 09:57:19 +00:00
parent e1fd395631
commit 1e81ce19e3
5 changed files with 6 additions and 50 deletions

View File

@@ -327,8 +327,7 @@ if ($cfg['AllowAnywhereRecoding'] && $allow_recoding
if ($charset_of_file != $charset) {
$charset_conversion = TRUE;
}
} elseif (PMA_MYSQL_INT_VERSION >= 40100
&& isset($charset_of_file) && $charset_of_file != 'utf8') {
} elseif (isset($charset_of_file) && $charset_of_file != 'utf8') {
PMA_DBI_query('SET NAMES \'' . $charset_of_file . '\'');
// We can not show query in this case, it is in different charset
$sql_query_disabled = TRUE;