* (bug 2885) Remove unnecessary reference parameter which broke classic skin
authorBrion Vibber <brion@users.mediawiki.org>
Sun, 30 Oct 2005 01:30:12 +0000 (01:30 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Sun, 30 Oct 2005 01:30:12 +0000 (01:30 +0000)
  talk notification on PHP 5.0.5

RELEASE-NOTES
includes/Title.php

index 564e85f..55ea3a5 100644 (file)
@@ -193,6 +193,8 @@ fully support the editing toolbar, but was found to be too confusing.
 * Ability to set the table name for external storage servers
 * (bug 3667) Add missing global in page move code
 * (bug 3761) Avoid deprecation warnings in Special:Import
+* (bug 2885) Remove unnecessary reference parameter which broke classic skin
+  talk notification on PHP 5.0.5
 
 
 === Caveats ===
index 7160e75..edde4ee 100644 (file)
@@ -1993,7 +1993,7 @@ class Title {
         * @param Title $title
         * @return bool
         */
-       function equals( &$title ) {
+       function equals( $title ) {
                return $this->getInterwiki() == $title->getInterwiki()
                        && $this->getNamespace() == $title->getNamespace()
                        && $this->getDbkey() == $title->getDbkey();