Index: branches/REL1_5/phase3/includes/Title.php |
— | — | @@ -2043,7 +2043,7 @@ |
2044 | 2044 | * @param Title $title |
2045 | 2045 | * @return bool |
2046 | 2046 | */ |
2047 | | - function equals( &$title ) { |
| 2047 | + function equals( $title ) { |
2048 | 2048 | return $this->getInterwiki() == $title->getInterwiki() |
2049 | 2049 | && $this->getNamespace() == $title->getNamespace() |
2050 | 2050 | && $this->getDbkey() == $title->getDbkey(); |
Index: branches/REL1_5/phase3/RELEASE-NOTES |
— | — | @@ -882,6 +882,8 @@ |
883 | 883 | * (bug 3649) Remove obsolete, broken moveCustomMessages script |
884 | 884 | * (bug 3667) Add missing global in page move code |
885 | 885 | * (bug 3761) Avoid deprecation warnings in Special:Import |
| 886 | +* (bug 2885) Remove unnecessary reference parameter which broke classic skin |
| 887 | + talk notification on PHP 5.0.5 |
886 | 888 | |
887 | 889 | |
888 | 890 | === Caveats === |