From 65b462df7cd48957c25df350bcba57ccd981c297 Mon Sep 17 00:00:00 2001 From: Robin Johnson Date: Sun, 6 May 2001 00:16:13 +0000 Subject: [PATCH] Fix for default type bug. --- tbl_create.php3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tbl_create.php3 b/tbl_create.php3 index 1b273d917..e88fa80ad 100755 --- a/tbl_create.php3 +++ b/tbl_create.php3 @@ -80,7 +80,7 @@ if(isset($submit)) // echo "$query $query_keys"; $sql_query = "CREATE TABLE ".$table." (".$query." ".$query_keys.")"; //BEGIN - Table Type - 2 May 2001 - Robbat2 - if(!empty($tbl_type)) + if(!empty($tbl_type) && ($tbl_type != "Default")) $sql_query .= " TYPE = $tbl_type"; //END - Table Type - 2 May 2001 - Robbat2 if(MYSQL_MAJOR_VERSION == "3.23" && !empty($comment))