*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:
parent
d3b9fcdc4a
commit
beded16563
1 changed files with 1 additions and 1 deletions
|
|
@ -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]) ) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue