aboutsummaryrefslogtreecommitdiffstats
path: root/includes/SpecialWatchlist.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/SpecialWatchlist.php')
-rw-r--r--includes/SpecialWatchlist.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/SpecialWatchlist.php b/includes/SpecialWatchlist.php
index 98a921db7331..e36cf7da39df 100644
--- a/includes/SpecialWatchlist.php
+++ b/includes/SpecialWatchlist.php
@@ -119,7 +119,7 @@ function wfSpecialWatchlist() {
if ( $days <= 0 ) {
$docutoff = '';
$cutoff = false;
- $npages = wfMsg( 'all' );
+ $npages = wfMsg( 'watchlistall1' );
} else {
$docutoff = "AND rev_timestamp > '" .
( $cutoff = $dbr->timestamp( time() - intval( $days * 86400 ) ) )
@@ -297,7 +297,7 @@ function wlDaysLink( $d, $page ) {
$sk = $wgUser->getSkin();
$s = $sk->makeKnownLink(
$wgContLang->specialPage( $page ),
- ($d ? $wgLang->formatNum( $d ) : wfMsg( 'all' ) ), "days=$d" );
+ ($d ? $wgLang->formatNum( $d ) : wfMsg( 'watchlistall2' ) ), "days=$d" );
return $s;
}