page_timestamp does not exist, eh eh, page_touched does though..
authorDomas Mituzas <midom@users.mediawiki.org>
Sat, 12 Nov 2005 19:39:17 +0000 (19:39 +0000)
committerDomas Mituzas <midom@users.mediawiki.org>
Sat, 12 Nov 2005 19:39:17 +0000 (19:39 +0000)
includes/SpecialRecentchangeslinked.php

index 73eac80..fa6e00e 100644 (file)
@@ -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