From 4bf83c2dd8ef3aaea30ab399d00dea5b48a2ecdd Mon Sep 17 00:00:00 2001 From: Domas Mituzas Date: Sat, 12 Nov 2005 19:39:17 +0000 Subject: [PATCH] page_timestamp does not exist, eh eh, page_touched does though.. --- includes/SpecialRecentchangeslinked.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.20.1