From 7f0d27b0885ff5bce21f263eb5b1af5687de71a9 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Mon, 13 Oct 2008 18:49:43 +0000 Subject: [PATCH] Add quotes --- includes/EditPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/EditPage.php b/includes/EditPage.php index ff9d79a66c..afc330627c 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -1032,7 +1032,7 @@ class EditPage { $res = $dbw->select( 'revision', 'rev_user', array( 'rev_page' => $this->mArticle->getId(), - 'rev_timestamp > '.$dbw->timestamp($edittime) ), + "rev_timestamp > '".$dbw->timestamp($edittime)."'" ), __METHOD__, array( 'ORDER BY' => 'rev_timestamp ASC', 'LIMIT' => 20 ) ); while( $row = $res->fetchObject() ) { -- 2.20.1