From: Victor Vasiliev Date: Sat, 2 Aug 2008 12:39:29 +0000 (+0000) Subject: * Fix WebRequest.php X-Git-Tag: 1.31.0-rc.0~46196 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/password.php?a=commitdiff_plain;h=160de68802e3b60802bf1f8425f771ead9846ee1;p=lhc%2Fweb%2Fwiklou.git * Fix WebRequest.php * Add RELEASE-NOTES for my previous commit --- 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 ); } /**