From bb47a88b57666876f300c4120ebd3600655cece4 Mon Sep 17 00:00:00 2001 From: saxmatt Date: Thu, 15 Apr 2004 05:53:54 +0000 Subject: [PATCH] quote -1 value in SQL. git-svn-id: http://svn.automattic.com/wordpress/trunk@1073 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/install.php b/wp-admin/install.php index d78297af19..666e2e2848 100644 --- a/wp-admin/install.php +++ b/wp-admin/install.php @@ -106,7 +106,7 @@ if (!$got_cats) { " text_before_link varchar(128) not null default '
  • ', " . " text_after_link varchar(128) not null default '
    '," . " text_after_all varchar(128) not null default '
  • ', " . - " list_limit int not null default -1, " . + " list_limit int not null default '-1', " . " PRIMARY KEY (cat_id) ". ") "; $result = mysql_query($sql) or print ("Can't create the table '$tablelinkcategories' in the database.
    " . $sql . "
    " . mysql_error());