* Update release notes
authorRob Church <robchurch@users.mediawiki.org>
Mon, 9 Jul 2007 07:56:05 +0000 (07:56 +0000)
committerRob Church <robchurch@users.mediawiki.org>
Mon, 9 Jul 2007 07:56:05 +0000 (07:56 +0000)
* Fix E_STRICT warning introduced in r23840

RELEASE-NOTES
includes/Article.php

index f033109..5142241 100644 (file)
@@ -262,7 +262,9 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
   containing ampersands.
 * (bug 10375) Change thousands separator character to &nbsp; for Latin (la)
 * (bug 10477) Fix AJAX watch for Farsi on Firefox: JavaScript encoding tweak
-
+* (bug 10496) Fix broken DISTINCT option logic in database backend
+* Fix CSS media declaration for "screen, projection"; was causing some
+  validation issues
 
 == API changes since 1.10 ==
 
index 89dffe6..789ae84 100644 (file)
@@ -2283,7 +2283,7 @@ class Article {
                        $wgRequest->getText('summary'),
                        $wgRequest->getVal('token'),
                        $wgRequest->getBool('bot'),
-                       &$resultDetails);
+                       $resultDetails);
 
                switch($retval)
                {