From: Greg Sabino Mullane Date: Thu, 5 Jun 2008 17:20:26 +0000 (+0000) Subject: querycache.value is an unsigned int with default of 0, so don't attempt to store... X-Git-Tag: 1.31.0-rc.0~47149 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=0236e8f144053a08d68f4acb3863cc22d93b2cf6;p=lhc%2Fweb%2Fwiklou.git querycache.value is an unsigned int with default of 0, so don't attempt to store an empty string. --- diff --git a/includes/QueryPage.php b/includes/QueryPage.php index 8c815e37e2..16dc7c0469 100644 --- a/includes/QueryPage.php +++ b/includes/QueryPage.php @@ -237,7 +237,7 @@ class QueryPage { if ( isset( $row->value ) ) { $value = $row->value; } else { - $value = ''; + $value = 0; } $insertSql .= '(' .