From: Rob Church Date: Mon, 9 Jul 2007 07:56:05 +0000 (+0000) Subject: * Update release notes X-Git-Tag: 1.31.0-rc.0~52195 X-Git-Url: https://git.cyclocoop.org/admin/%7B%7Blocalurl:Special:UserLogin%7D%7D?a=commitdiff_plain;h=a2a51d93faf1bf024567f9907bf792730e01d24f;p=lhc%2Fweb%2Fwiklou.git * Update release notes * Fix E_STRICT warning introduced in r23840 --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index f03310997a..5142241a72 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -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   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 == diff --git a/includes/Article.php b/includes/Article.php index 89dffe66e6..789ae84d93 100644 --- a/includes/Article.php +++ b/includes/Article.php @@ -2283,7 +2283,7 @@ class Article { $wgRequest->getText('summary'), $wgRequest->getVal('token'), $wgRequest->getBool('bot'), - &$resultDetails); + $resultDetails); switch($retval) {