From a2a51d93faf1bf024567f9907bf792730e01d24f Mon Sep 17 00:00:00 2001 From: Rob Church Date: Mon, 9 Jul 2007 07:56:05 +0000 Subject: [PATCH] * Update release notes * Fix E_STRICT warning introduced in r23840 --- RELEASE-NOTES | 4 +++- includes/Article.php | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) 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) { -- 2.20.1