* Fix WebRequest.php
authorVictor Vasiliev <vasilievvv@users.mediawiki.org>
Sat, 2 Aug 2008 12:39:29 +0000 (12:39 +0000)
committerVictor Vasiliev <vasilievvv@users.mediawiki.org>
Sat, 2 Aug 2008 12:39:29 +0000 (12:39 +0000)
* Add RELEASE-NOTES for my previous commit

RELEASE-NOTES
includes/WebRequest.php

index cbadeff..448b5d1 100644 (file)
@@ -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 ===
 
index 3fce584..3a845da 100644 (file)
@@ -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 );
        }
 
        /**