From: Siebrand Mazeland Date: Mon, 1 Apr 2013 16:25:05 +0000 (+0200) Subject: Use double quotes to use variable $oper properly X-Git-Tag: 1.31.0-rc.0~20156 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=2e0f1918295f5809781541a8759855b7437dc140;p=lhc%2Fweb%2Fwiklou.git Use double quotes to use variable $oper properly Introduced in Change-Id: I29461e5332f3fc6523cbd899e14394aa88865d93 Change-Id: Ic4e8d133fc9ab362f3f463309d799e80fff5d883 --- 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(); }