* (bug 4507) Adjust FULLPAGENAMEE escaping to standard form
authorBrion Vibber <brion@users.mediawiki.org>
Fri, 6 Jan 2006 21:03:50 +0000 (21:03 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Fri, 6 Jan 2006 21:03:50 +0000 (21:03 +0000)
RELEASE-NOTES
includes/Parser.php

index f6b1dfa..7509a20 100644 (file)
@@ -410,6 +410,7 @@ fully support the editing toolbar, but was found to be too confusing.
   MIME type to the default blacklist. Prevented inline display of images
   which are not of known image types. This is in response to
   http://en.wikipedia.org/wiki/Windows_Metafile_vulnerability
+* (bug 4507) Adjust FULLPAGENAMEE escaping to standard form
 
 
 === Caveats ===
index cd8fd80..abd372c 100644 (file)
@@ -1961,7 +1961,7 @@ class Parser
                        case MAG_FULLPAGENAME:
                                return $this->mTitle->getPrefixedText();
                        case MAG_FULLPAGENAMEE:
-                               return wfUrlencode( $this->mTitle->getPrefixedText() );
+                               return $this->mTitle->getPrefixedURL();
                        case MAG_REVISIONID:
                                return $this->mRevisionId;
                        case MAG_NAMESPACE: