Index: trunk/phase3/includes/Title.php |
— | — | @@ -1993,7 +1993,7 @@ |
1994 | 1994 | * @param Title $title |
1995 | 1995 | * @return bool |
1996 | 1996 | */ |
1997 | | - function equals( &$title ) { |
| 1997 | + function equals( $title ) { |
1998 | 1998 | return $this->getInterwiki() == $title->getInterwiki() |
1999 | 1999 | && $this->getNamespace() == $title->getNamespace() |
2000 | 2000 | && $this->getDbkey() == $title->getDbkey(); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -193,6 +193,8 @@ |
194 | 194 | * Ability to set the table name for external storage servers |
195 | 195 | * (bug 3667) Add missing global in page move code |
196 | 196 | * (bug 3761) Avoid deprecation warnings in Special:Import |
| 197 | +* (bug 2885) Remove unnecessary reference parameter which broke classic skin |
| 198 | + talk notification on PHP 5.0.5 |
197 | 199 | |
198 | 200 | |
199 | 201 | === Caveats === |