r20431 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r20430‎ | r20431 | r20432 >
Date:01:55, 14 March 2007
Author:aaron
Status:old
Tags:
Comment:
*Add rc_deleted
Modified paths:
  • /trunk/phase3/includes/SpecialRecentchangeslinked.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/SpecialRecentchangeslinked.php
@@ -97,7 +97,8 @@
9898 rc_patrolled,
9999 rc_type,
100100 rc_old_len,
101 - rc_new_len
 101+ rc_new_len,
 102+ rc_deleted
102103 " . ($uid ? ",wl_user" : "") . "
103104 FROM $categorylinks, $recentchanges
104105 " . ($uid ? "LEFT OUTER JOIN $watchlist ON wl_user={$uid} AND wl_title=rc_title AND wl_namespace=rc_namespace " : "") . "
@@ -126,7 +127,8 @@
127128 rc_patrolled,
128129 rc_type,
129130 rc_old_len,
130 - rc_new_len
 131+ rc_new_len,
 132+ rc_deleted
131133 " . ($uid ? ",wl_user" : "") . "
132134 FROM $pagelinks, $recentchanges
133135 " . ($uid ? " LEFT OUTER JOIN $watchlist ON wl_user={$uid} AND wl_title=rc_title AND wl_namespace=rc_namespace " : "") . "