From af02fc4df75ea7b103371b0b54c1737b8f305e39 Mon Sep 17 00:00:00 2001 From: Miles Lott Date: Wed, 28 Feb 2001 22:09:09 +0000 Subject: [PATCH] Remove num for int size spec on create temp table --- addressbook/inc/class.contacts_sql.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addressbook/inc/class.contacts_sql.inc.php b/addressbook/inc/class.contacts_sql.inc.php index 867a90a98a..198366c7ab 100644 --- a/addressbook/inc/class.contacts_sql.inc.php +++ b/addressbook/inc/class.contacts_sql.inc.php @@ -323,7 +323,7 @@ $this->db3 = $this->db2 = $this->db; // Create new result objects before our queries // start create sql for temp table - $tempcreate = "CREATE TABLE ".$tmp_table." (id int(11),"; + $tempcreate = "CREATE TABLE ".$tmp_table." (id int,"; // construct query and count rows based on filter sent to function $this->db->query("select id from $this->std_table ".$filtermethod,__LINE__,__FILE__);