r68551 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r68550‎ | r68551 | r68552 >
Date:04:13, 25 June 2010
Author:juliano
Status:deferred
Tags:
Comment:
Fix crash in Special:Wikilog with a broken title.
Modified paths:
  • /trunk/extensions/Wikilog/SpecialWikilog.php (modified) (history)

Diff [purge]

Index: trunk/extensions/Wikilog/SpecialWikilog.php
@@ -402,8 +402,7 @@
403403 public static function getQuery( $opts ) {
404404 $query = new WikilogItemQuery();
405405 $query->setPubStatus( $opts['show'] );
406 - if ( ( $t = $opts['wikilog'] ) ) {
407 - $t = Title::newFromText( $t );
 406+ if ( $opts['wikilog'] && ( $t = Title::newFromText( $opts['wikilog'] ) ) ) {
408407 if ( $t->getText() == '*' ) {
409408 $query->setNamespace( $t->getNamespace() );
410409 } else {

Status & tagging log