Index: trunk/phase3/includes/Article.php |
— | — | @@ -902,7 +902,7 @@ |
903 | 903 | function addProtectionNotice( $editrestr, $moverestr ) { |
904 | 904 | global $wgOut; |
905 | 905 | |
906 | | - $editGroups = $moveGroups = ''; |
| 906 | + $editGroups = $moveGroups = wfMsg('protected-anyone'); |
907 | 907 | # Get groups that have each right |
908 | 908 | if( !empty( $editrestr ) ) { |
909 | 909 | $permission = ($editrestr[0]=='sysop') ? 'protect' : $editrestr[0]; |
— | — | @@ -916,11 +916,11 @@ |
917 | 917 | } |
918 | 918 | # Use general messages if no groups found for a type |
919 | 919 | if( !$editGroups || !$moveGroups ) { |
920 | | - $msg = wfMsg( 'protected-subtitle3' ); |
| 920 | + $msg = wfMsg( 'protected-subtitle' ); |
921 | 921 | } else if( $editGroups == $moveGroups ) { |
922 | 922 | $msg = wfMsg( 'protected-subtitle2', $editGroups, $moveGroups ); |
923 | 923 | } else { |
924 | | - $msg = wfMsg( 'protected-subtitle', $editGroups, $moveGroups ); |
| 924 | + $msg = wfMsg( 'protected-subtitle3', $editGroups, $moveGroups ); |
925 | 925 | } |
926 | 926 | |
927 | 927 | $wgOut->setSubtitle( $wgOut->getSubtitle() . $msg ); |