Page MenuHomePhabricator
Authored By
bzimport
Nov 21 2014, 8:01 PM
Size
1 KB
Referenced Files
None
Subscribers
None

all.diff

Index: SpecialContributions.php
===================================================================
RCS file: /cvsroot/wikipedia/phase3/includes/SpecialContributions.php,v
retrieving revision 1.66
diff -u -r1.66 SpecialContributions.php
--- SpecialContributions.php 22 Feb 2005 06:03:47 -0000 1.66
+++ SpecialContributions.php 2 Mar 2005 01:01:05 -0000
@@ -227,7 +227,7 @@
global $wgContLang, $wgScript;
$namespaceselect = '<select name="namespace">';
- $namespaceselect .= '<option value="" '.(is_null($namespace) ? ' selected="selected"' : '').'>'.wfMsg( 'all' ).'</option>';
+ $namespaceselect .= '<option value="" '.(is_null($namespace) ? ' selected="selected"' : '').'>'.wfMsg( 'all_contributions' ).'</option>';
$arr = $wgContLang->getNamespaces();
foreach( array_keys( $arr ) as $i ) {
if( $i < 0 ) {
Index: SpecialWatchlist.php
===================================================================
RCS file: /cvsroot/wikipedia/phase3/includes/SpecialWatchlist.php,v
retrieving revision 1.48
diff -u -r1.48 SpecialWatchlist.php
--- SpecialWatchlist.php 21 Feb 2005 12:46:35 -0000 1.48
+++ SpecialWatchlist.php 2 Mar 2005 01:01:05 -0000
@@ -52,7 +52,7 @@
}
$uid = $wgUser->getID();
- if( $wgRequest->getVal( 'reset' ) == 'all' ) {
+ if( $wgRequest->getVal( 'reset' ) == 'all' ) { # This might be affected..
$wgUser->clearAllNotifications( $uid );
}
@@ -117,7 +117,7 @@
if ( $days <= 0 ) {
$docutoff = '';
$cutoff = false;
- $npages = wfMsg( 'all' );
+ $npages = wfMsg( 'all' ); # I couln't make this appear
} else {
$docutoff = "AND rev_timestamp > '" .
( $cutoff = $dbr->timestamp( time() - intval( $days * 86400 ) ) )
@@ -276,7 +276,7 @@
$sk = $wgUser->getSkin();
$s = $sk->makeKnownLink(
$wgContLang->specialPage( $page ),
- ($d ? $wgLang->formatNum( $d ) : wfMsg( 'all' ) ), "days=$d" );
+ ($d ? $wgLang->formatNum( $d ) : wfMsg( 'all_watchlist' ) ), "days=$d" );
return $s;
}

File Metadata

Mime Type
text/x-diff
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1303
Default Alt Text
all.diff (1 KB)

Event Timeline