Index: trunk/phase3/includes/actions/HistoryAction.php |
— | — | @@ -619,7 +619,7 @@ |
620 | 620 | } |
621 | 621 | |
622 | 622 | if ( $tools ) { |
623 | | - $s .= $this->msg( 'parentheses' )->rawParams( $lang->pipeList( $tools ) )->escaped(); |
| 623 | + $s .= ' '. $this->msg( 'parentheses' )->rawParams( $lang->pipeList( $tools ) )->escaped(); |
624 | 624 | } |
625 | 625 | |
626 | 626 | # Tags |
Index: trunk/phase3/includes/ChangesList.php |
— | — | @@ -894,7 +894,7 @@ |
895 | 895 | } |
896 | 896 | # Total change link |
897 | 897 | $r .= ' '; |
898 | | - $logtext = ''; |
| 898 | + $logtext = ''; |
899 | 899 | if( !$allLogs ) { |
900 | 900 | if( !ChangesList::userCan( $rcObj, Revision::DELETED_TEXT, $this->getUser() ) ) { |
901 | 901 | $logtext .= $nchanges[$n]; |
— | — | @@ -933,7 +933,7 @@ |
934 | 934 | ); |
935 | 935 | } |
936 | 936 | |
937 | | - if( $logtext != '' ) { |
| 937 | + if( $logtext !== '' ) { |
938 | 938 | $r .= $this->msg( 'parentheses' )->rawParams( $logtext )->escaped(); |
939 | 939 | } |
940 | 940 | |
— | — | @@ -1008,7 +1008,7 @@ |
1009 | 1009 | $r .= $link . '</span>'; |
1010 | 1010 | |
1011 | 1011 | if ( !$type == RC_LOG || $type == RC_NEW ) { |
1012 | | - $r .= $this->msg( 'parentheses' )->rawParams( $rcObj->curlink . $this->message['pipe-separator'] . $rcObj->lastlink )->escaped(); |
| 1012 | + $r .= ' ' . $this->msg( 'parentheses' )->rawParams( $rcObj->curlink . $this->message['pipe-separator'] . $rcObj->lastlink )->escaped(); |
1013 | 1013 | } |
1014 | 1014 | $r .= ' . . '; |
1015 | 1015 | |
— | — | @@ -1134,7 +1134,7 @@ |
1135 | 1135 | # Diff and hist links |
1136 | 1136 | if ( $type != RC_LOG ) { |
1137 | 1137 | $query['action'] = 'history'; |
1138 | | - $r .= $this->msg( 'parentheses' )->rawParams( $rcObj->difflink . $this->message['pipe-separator'] . Linker::linkKnown( |
| 1138 | + $r .= ' ' . $this->msg( 'parentheses' )->rawParams( $rcObj->difflink . $this->message['pipe-separator'] . Linker::linkKnown( |
1139 | 1139 | $rcObj->getTitle(), |
1140 | 1140 | $this->message['hist'], |
1141 | 1141 | array(), |