r34838 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r34837‎ | r34838 | r34839 >
Date:23:12, 14 May 2008
Author:aaron
Status:old
Tags:
Comment:
E_STRICT. Even though manual says it can be called statically, it still spews notices anyway...
Modified paths:
  • /trunk/extensions/ImageMap/ImageMap_body.php (modified) (history)

Diff [purge]

Index: trunk/extensions/ImageMap/ImageMap_body.php
@@ -70,7 +70,8 @@
7171 $imageHTML = $parser->makeImage( $imageTitle, $options );
7272 $parser->mOutput->addImage( $imageTitle->getDBkey() );
7373
74 - $domDoc = DOMDocument::loadXML( $imageHTML );
 74+ $domDoc = new DOMDocument();
 75+ $domDoc->loadXML( $imageHTML );
7576 $xpath = new DOMXPath( $domDoc );
7677 $imgs = $xpath->query( '//img' );
7778 if ( !$imgs->length ) {

Status & tagging log