r89829 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r89828‎ | r89829 | r89830 >
Date:16:22, 10 June 2011
Author:foxtrott
Status:deferred
Tags:
Comment:
bugfix (used non-existent variable)
Modified paths:
  • /trunk/extensions/SemanticGlossary/SemanticGlossaryBackend.php (modified) (history)

Diff [purge]

Index: trunk/extensions/SemanticGlossary/SemanticGlossaryBackend.php
@@ -77,8 +77,9 @@
7878
7979 if ( $ml = $this->getMessageLog() ) {
8080 $ml->addMessage(
81 - wfMsg( 'semanticglossary-termdefinedtwice', array($subject->getTitle()->getPrefixedText()) ),
82 - SemanticGlossaryMessageLog::SG_WARNING );
 81+ wfMsg( 'semanticglossary-termdefinedtwice',
 82+ array($resultline[0]->getResultSubject()->getTitle()->getPrefixedText()) ),
 83+ LingoMessageLog::MESSAGE_WARNING );
8384 }
8485
8586 continue;