From b2840feb9cace39a61284b9bf3d08cde6f8c314c Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Thu, 15 Apr 2004 05:53:54 +0000 Subject: [PATCH] quote -1 value in SQL. git-svn-id: https://develop.svn.wordpress.org/trunk@1073 602fd350-edb4-49c9-b593-d223f7449a82 --- 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());