From 2e0f1918295f5809781541a8759855b7437dc140 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 1 Apr 2013 18:25:05 +0200 Subject: [PATCH] Use double quotes to use variable $oper properly Introduced in Change-Id: I29461e5332f3fc6523cbd899e14394aa88865d93 Change-Id: Ic4e8d133fc9ab362f3f463309d799e80fff5d883 --- includes/actions/HistoryAction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/actions/HistoryAction.php b/includes/actions/HistoryAction.php index 909bd4919d..87294261f9 100644 --- a/includes/actions/HistoryAction.php +++ b/includes/actions/HistoryAction.php @@ -224,7 +224,7 @@ class HistoryAction extends FormlessAction { } if ( $offset ) { - $offsets = array( 'rev_timestamp $oper ' . $dbr->addQuotes( $dbr->timestamp( $offset ) ) ); + $offsets = array( "rev_timestamp $oper " . $dbr->addQuotes( $dbr->timestamp( $offset ) ) ); } else { $offsets = array(); } -- 2.20.1