From 160de68802e3b60802bf1f8425f771ead9846ee1 Mon Sep 17 00:00:00 2001 From: Victor Vasiliev Date: Sat, 2 Aug 2008 12:39:29 +0000 Subject: [PATCH] * Fix WebRequest.php * Add RELEASE-NOTES for my previous commit --- RELEASE-NOTES | 1 + includes/WebRequest.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index cbadeff633..448b5d1bfc 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -42,6 +42,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN sidebar and add custom portlets to it * Added 'MakeGlobalVariablesScript' hook for extensions to be able to add variables into into the output of Skin::makeVariablesScript +* Added $wgAddGroups and $wgRemoveGroups display on Special:ListGroupRights === Bug fixes in 1.14 === diff --git a/includes/WebRequest.php b/includes/WebRequest.php index 3fce584527..3a845daede 100644 --- a/includes/WebRequest.php +++ b/includes/WebRequest.php @@ -507,7 +507,7 @@ class WebRequest { unset( $newquery['title'] ); $newquery = array_merge( $newquery, $array ); $query = wfArrayToCGI( $newquery ); - return $onlyquery ? $query : $wgTitle->getLocalURL( $basequery ); + return $onlyquery ? $query : $wgTitle->getLocalURL( $query ); } /** -- 2.20.1