r88998 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r88997
|
r88998
|
r88999
>
Date:
21:00, 27 May 2011
Author:
foxtrott
Status:
deferred
Tags:
Comment:
bugfix (strict standards error)
Modified paths:
/trunk/extensions/SemanticForms/includes/SF_FormPrinter.php
(modified) (
history
)
Diff
[
purge
]
Index: trunk/extensions/SemanticForms/includes/SF_FormPrinter.php
—
—
@@ -1432,7 +1432,8 @@
1433
1433
$javascript_text = '';
1434
1434
}
1435
1435
1436
- $wgOut->addParserOutputNoText( $wgParser->getOutput() );
1436
+ $parserOutput = $wgParser->getOutput();
1437
+ $wgOut->addParserOutputNoText( $parserOutput );
1437
1438
1438
1439
$wgParser = $oldParser;
1439
1440