make Drizzle version checks consistent

This commit is contained in:
Piotr Przybylski
2011-02-17 02:48:59 +01:00
parent dcf0e4235a
commit b02955420c

View File

@@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
/** /**
* *
*/ */
if (PMA_MYSQL_MAJOR_VERSION > 2009) { if (PMA_MYSQL_MAJOR_VERSION >= 2009) {
/* There are no charsets in Drizzle */ /* There are no charsets in Drizzle */
$GLOBALS['mysql_charsets'] = array(); $GLOBALS['mysql_charsets'] = array();
$GLOBALS['mysql_charsets_descriptions'] = array('utf8' => 'UTF-8 Unicode'); $GLOBALS['mysql_charsets_descriptions'] = array('utf8' => 'UTF-8 Unicode');