Fix a problem with a protected class method that brought up an error, and also
authorCharles Melbye <charlie@users.mediawiki.org>
Mon, 12 Jan 2009 22:52:09 +0000 (22:52 +0000)
committerCharles Melbye <charlie@users.mediawiki.org>
Mon, 12 Jan 2009 22:52:09 +0000 (22:52 +0000)
fixed a typo in the release notes.

RELEASE-NOTES
includes/RecentChange.php

index c16d887..3a3f53a 100644 (file)
@@ -29,7 +29,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * Added "Advanced search" link to the search form
 * Special:Upload can now have a custom upload message instead of uploadtext by
   passing "uploadmsg" parameter in the url
-* (bug 9947) Add PROTECTIONLEVEL parser funtion to return the protection level
+* (bug 9947) Add PROTECTIONLEVEL parser function to return the protection level
   for the current page for a given action
 * Added "__\" magic word to eat up all whitespace and newlines to the next 
   non-whitespace character, to facilitate writing readable template code where
index 767e3da..ac4de97 100644 (file)
@@ -593,7 +593,7 @@ class RecentChange
                return $trail;
        }
 
-       protected function getIRCLine() {
+       public function getIRCLine() {
                global $wgUseRCPatrol, $wgUseNPPatrol, $wgRC2UDPInterwikiPrefix, $wgLocalInterwiki;
 
                // FIXME: Would be good to replace these 2 extract() calls with something more explicit