Index: trunk/phase3/includes/GlobalFunctions.php |
— | — | @@ -2516,7 +2516,7 @@ |
2517 | 2517 | global $wgLang; |
2518 | 2518 | $dirmark = ( $oppositedm ? $wgLang->getDirMark( true ) : '' ) . |
2519 | 2519 | $wgLang->getDirMark(); |
2520 | | - $details = $details ? ' ' . $dirmark . "($details)" : ''; |
| 2520 | + $details = $details ? $dirmark . " ($details)" : ''; |
2521 | 2521 | return $page . $details; |
2522 | 2522 | } |
2523 | 2523 | |
Index: trunk/phase3/includes/specials/SpecialProtectedtitles.php |
— | — | @@ -92,8 +92,6 @@ |
93 | 93 | |
94 | 94 | $description_items[] = $protType; |
95 | 95 | |
96 | | - $stxt = ''; |
97 | | - |
98 | 96 | if ( $row->pt_expiry != 'infinity' && strlen($row->pt_expiry) ) { |
99 | 97 | $expiry = $wgLang->formatExpiry( $row->pt_expiry ); |
100 | 98 | |
— | — | @@ -104,7 +102,7 @@ |
105 | 103 | |
106 | 104 | wfProfileOut( __METHOD__ ); |
107 | 105 | |
108 | | - return '<li>' . wfSpecialList( $link . $stxt, implode( $description_items, ', ' ) ) . "</li>\n"; |
| 106 | + return '<li>' . wfSpecialList( $link, implode( $description_items, ', ' ) ) . "</li>\n"; |
109 | 107 | } |
110 | 108 | |
111 | 109 | /** |