From: Domas Mituzas Date: Sat, 12 Nov 2005 19:39:17 +0000 (+0000) Subject: page_timestamp does not exist, eh eh, page_touched does though.. X-Git-Tag: 1.6.0~1190 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=4bf83c2dd8ef3aaea30ab399d00dea5b48a2ecdd;p=lhc%2Fweb%2Fwiklou.git page_timestamp does not exist, eh eh, page_touched does though.. --- diff --git a/includes/SpecialRecentchangeslinked.php b/includes/SpecialRecentchangeslinked.php index 73eac8005e..fa6e00ea03 100644 --- a/includes/SpecialRecentchangeslinked.php +++ b/includes/SpecialRecentchangeslinked.php @@ -72,7 +72,7 @@ function wfSpecialRecentchangeslinked( $par = NULL ) { rev_user_text,rev_timestamp,rev_minor_edit, page_is_new FROM $categorylinks, $revision, $page - WHERE rev_timestamp > '{$cutoff}' AND page_timestamp > '{$cutoff}' + WHERE rev_timestamp > '{$cutoff}' AND page_touched > '{$cutoff}' {$cmq} AND rev_page=page_id AND cl_from=page_id @@ -88,7 +88,7 @@ ORDER BY rev_timestamp DESC rev_user,rev_comment,rev_user_text,rev_id,rev_timestamp,rev_minor_edit, page_is_new FROM $pagelinks, $revision, $page - WHERE rev_timestamp > '{$cutoff}' AND page_timestamp > '{$cutoff}' + WHERE rev_timestamp > '{$cutoff}' AND page_touched > '{$cutoff}' {$cmq} AND rev_page=page_id AND pl_namespace=page_namespace