r91450 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r91449
|
r91450
|
r91451
>
Date:
11:08, 5 July 2011
Author:
ialex
Status:
ok
Tags:
Comment:
Removed usage of error suppression operator
Modified paths:
/trunk/phase3/includes/diff/DairikiDiff.php
(modified) (
history
)
Diff
[
purge
]
Index: trunk/phase3/includes/diff/DairikiDiff.php
—
—
@@ -1015,7 +1015,7 @@
1016
1016
$retval[] = array(
1017
1017
'action' => 'change',
1018
1018
'old' => $l,
1019
- 'new' => @$edit->closing[$i],
1019
+ 'new' => isset( $edit->closing[$i] ) ? $edit->closing[$i] : null,
1020
1020
'oldline' => $oldline++,
1021
1021
'newline' => $newline++,
1022
1022
);
Status & tagging log
12:08, 5 July 2011
😂
(
talk
|
contribs
)
changed the
status
of r91450
[
removed:
new
added:
ok]