*sigh* I was looking at parser tests, but not notices in a site this time... Followup r79558 fix a small php notice.

This commit is contained in:
Daniel Friesen 2011-01-04 04:23:01 +00:00
parent d3b9fcdc4a
commit beded16563

View file

@ -151,7 +151,7 @@ class ParserOutput extends CacheTime {
$args = array( $args = array(
htmlspecialchars_decode($m[1]), htmlspecialchars_decode($m[1]),
htmlspecialchars_decode($m[2]), htmlspecialchars_decode($m[2]),
$m[4] ? $m[3] : null, isset($m[4]) ? $m[3] : null,
); );
$args[0] = Title::newFromText( $args[0] ); $args[0] = Title::newFromText( $args[0] );
if ( !is_object($args[0]) ) { if ( !is_object($args[0]) ) {