Index: trunk/extensions/AbuseFilter/SpecialAbuseLog.php |
— | — | @@ -169,7 +169,7 @@ |
170 | 170 | $timestamp = $wgLang->timeanddate( $row->afl_timestamp ); |
171 | 171 | |
172 | 172 | $actions_taken = $row->afl_actions; |
173 | | - if (!strlen(trim($actions_taken))) { |
| 173 | + if ( !strlen( trim( $actions_taken) ) ) { |
174 | 174 | $actions_taken = wfMsg( 'abusefilter-log-noactions' ); |
175 | 175 | } else { |
176 | 176 | $actions = explode(',', $actions_taken); |
— | — | @@ -189,7 +189,8 @@ |
190 | 190 | $detailsLink = $sk->makeKnownLinkObj( $this->getTitle( ), wfMsg( 'abusefilter-log-detailslink' ), 'details='.$row->afl_id ); |
191 | 191 | $examineLink = $sk->link( $examineTitle, wfMsgExt( 'abusefilter-changeslist-examine', 'parseinline' ), array() ); |
192 | 192 | |
193 | | - $description = wfMsgExt( 'abusefilter-log-detailedentry', array( 'parseinline', 'replaceafter' ), array( $timestamp, $user, $row->afl_filter, $row->afl_action, $sk->makeKnownLinkObj( $title ), $actions_taken, $parsed_comments, $detailsLink, $examineLink ) ); |
| 193 | + $description = wfMsgExt( 'abusefilter-log-detailedentry', array( 'parseinline', 'replaceafter' ), |
| 194 | + array( $timestamp, $user, $row->afl_filter, $row->afl_action, $sk->makeKnownLinkObj( $title ), $actions_taken, $parsed_comments, $detailsLink, $examineLink ) ); |
194 | 195 | } else { |
195 | 196 | $description = wfMsgExt( 'abusefilter-log-entry', array( 'parseinline', 'replaceafter' ), array( $timestamp, $user, $row->afl_action, $sk->makeKnownLinkObj( $title ), $actions_taken, $parsed_comments ) ); |
196 | 197 | } |