From b02955420cb21bdd55c7607e6ffac75d80edbdfd Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Thu, 17 Feb 2011 02:48:59 +0100 Subject: [PATCH] make Drizzle version checks consistent --- libraries/mysql_charsets.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/mysql_charsets.lib.php b/libraries/mysql_charsets.lib.php index 89aef18205..5663dd92c1 100644 --- a/libraries/mysql_charsets.lib.php +++ b/libraries/mysql_charsets.lib.php @@ -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 */ $GLOBALS['mysql_charsets'] = array(); $GLOBALS['mysql_charsets_descriptions'] = array('utf8' => 'UTF-8 Unicode'); -- 2.11.4.GIT