* (bug 3735) Fix to run under MySQL 5's strict mode
authorBrion Vibber <brion@users.mediawiki.org>
Tue, 25 Oct 2005 23:26:14 +0000 (23:26 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Tue, 25 Oct 2005 23:26:14 +0000 (23:26 +0000)
RELEASE-NOTES
includes/Article.php

index 57debda..beef6cb 100644 (file)
@@ -166,6 +166,7 @@ fully support the editing toolbar, but was found to be too confusing.
 * Fix wfMsg*() replacements; args containing literal $[2-9] were wiped
 * Added @import for [[MediaWiki:Common.css]] to all skins
 * Removed hardcoded Norwegian (no) project namespaces
+* (bug 3735) Fix to run under MySQL 5's strict mode
 
 
 === Caveats ===
index df9589c..51c2c99 100644 (file)
@@ -934,6 +934,7 @@ class Article {
                        'page_random'       => wfRandom(),
                        'page_touched'      => $dbw->timestamp(),
                        'page_latest'       => 0, # Fill this in shortly...
+                       'page_len'          => 0, # Fill this in shortly...
                ), $fname );
                $newid = $dbw->insertId();