Index: trunk/phase3/includes/ChangesList.php |
— | — | @@ -69,7 +69,7 @@ |
70 | 70 | private function preCacheMessages() { |
71 | 71 | if( !isset( $this->message ) ) { |
72 | 72 | foreach( explode(' ', 'cur diff hist minoreditletter newpageletter last '. |
73 | | - 'blocklink history boteditletter semicolon-separator' ) as $msg ) { |
| 73 | + 'blocklink history boteditletter semicolon-separator pipe-separator' ) as $msg ) { |
74 | 74 | $this->message[$msg] = wfMsgExt( $msg, array( 'escapenoentities' ) ); |
75 | 75 | } |
76 | 76 | } |
— | — | @@ -832,12 +832,12 @@ |
833 | 833 | if( $allLogs ) { |
834 | 834 | // don't show history link for logs |
835 | 835 | } else if( $namehidden || !$block[0]->getTitle()->exists() ) { |
836 | | - $r .= $this->message['semicolon-separator'] . $this->message['hist'] . ')'; |
| 836 | + $r .= $this->message['pipe-separator'] . $this->message['hist'] . ')'; |
837 | 837 | } else { |
838 | 838 | $params = $queryParams; |
839 | 839 | $params['action'] = 'history'; |
840 | 840 | |
841 | | - $r .= $this->message['semicolon-separator'] . |
| 841 | + $r .= $this->message['pipe-separator'] . |
842 | 842 | $this->skin->link( |
843 | 843 | $block[0]->getTitle(), |
844 | 844 | $this->message['hist'], |
— | — | @@ -925,7 +925,7 @@ |
926 | 926 | if ( !$rc_type == RC_LOG || $rc_type == RC_NEW ) { |
927 | 927 | $r .= ' ('; |
928 | 928 | $r .= $rcObj->curlink; |
929 | | - $r .= $this->message['semicolon-separator']; |
| 929 | + $r .= $this->message['pipe-separator']; |
930 | 930 | $r .= $rcObj->lastlink; |
931 | 931 | $r .= ')'; |
932 | 932 | } |
— | — | @@ -1050,7 +1050,7 @@ |
1051 | 1051 | } |
1052 | 1052 | # Diff and hist links |
1053 | 1053 | if ( $rc_type != RC_LOG ) { |
1054 | | - $r .= ' ('. $rcObj->difflink . $this->message['semicolon-separator']; |
| 1054 | + $r .= ' ('. $rcObj->difflink . $this->message['pipe-separator']; |
1055 | 1055 | $query['action'] = 'history'; |
1056 | 1056 | $r .= $this->skin->link( |
1057 | 1057 | $rcObj->getTitle(), |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -308,6 +308,9 @@ |
309 | 309 | * (bug 15745) The edit summary link parser now handles mismatched brackets |
310 | 310 | better |
311 | 311 | * (bug 19839) Comments in log items are no more double escaped |
| 312 | +* (bug 19839) Comments in log items are no more double escaped |
| 313 | +* (bug 18161) Fix inconsistent separators in watchlist link toolbars with |
| 314 | + "enhanced recent changes" |
312 | 315 | |
313 | 316 | == API changes in 1.16 == |
314 | 317 | |