From 7d740345af9579512b4c651ea5a20071e8a66d9e Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Sat, 26 Mar 2005 18:24:35 +0000 Subject: [PATCH] useIndexClause( 'rev_timestamp' ); => useIndexClause( 'page_timestamp' ); (requested by kate turner). --- includes/PageHistory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/PageHistory.php b/includes/PageHistory.php index d79172cf7b..3c32192821 100644 --- a/includes/PageHistory.php +++ b/includes/PageHistory.php @@ -66,7 +66,7 @@ class PageHistory { $fname ); else $notificationtimestamp = false; - $use_index = $db->useIndexClause( 'rev_timestamp' ); + $use_index = $db->useIndexClause( 'page_timestamp' ); $revision = $db->tableName( 'revision' ); $limits = $offsets = ""; -- 2.20.1