From f39c517e8f363471a4a05ff6a9cdb49e5a763ca4 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Sun, 8 Jun 2003 18:21:32 +0000 Subject: [PATCH] I should be more carefully when fixing bugs via drag&drop... --- tbl_properties_structure.php3 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tbl_properties_structure.php3 b/tbl_properties_structure.php3 index c3410e5c7..d9d07c0cb 100755 --- a/tbl_properties_structure.php3 +++ b/tbl_properties_structure.php3 @@ -148,8 +148,8 @@ while ($row = PMA_mysql_fetch_array($fields_rs)) { || substr($type, 0, 8) == 'tinytext' || substr($type, 0, 10) == 'mediumtext' || substr($type, 0, 8) == 'longtext' - || strtolower(substr($type, 0, 3)) == 'set' - || strtolower(substr($type, 0, 4)) == 'enum' + || substr($type, 0, 3) == 'set' + || substr($type, 0, 4) == 'enum' ) && !$binary) { if (strpos($type, ' character set ')) { $type = substr($type, 0, strpos($type, ' character set '));