r100464 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r100463‎ | r100464 | r100465 >
Date:22:12, 21 October 2011
Author:reedy
Status:ok (Comments)
Tags:
Comment:
Bug 31866 - Wikilove causes fatal when viewing User:/ ( getTalkPage() on a non-object )
Modified paths:
  • /branches/wmf/1.18wmf1/extensions/WikiLove/WikiLove.hooks.php (modified) (history)

Diff [purge]

Index: branches/wmf/1.18wmf1/extensions/WikiLove/WikiLove.hooks.php
@@ -175,7 +175,10 @@
176176
177177 // If we're on a subpage, get the base page title
178178 $baseTitle = Title::newFromText( $title->getBaseText(), $ns );
179 -
 179+ if ( $baseTitle === null ) {
 180+ return null;
 181+ }
 182+
180183 // Get the user talk page
181184 if ( $ns == NS_USER_TALK ) {
182185 // We're already on the user talk page

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r99374fix for Bug 31557kaldari20:12, 9 October 2011

Comments

#Comment by Hashar (talk | contribs)   10:31, 13 December 2011

follow up r99374

Status & tagging log