From e07680d9009bd1ce3fa1fc8fc2599855e167fb80 Mon Sep 17 00:00:00 2001 From: Michael Dale Date: Sat, 7 Nov 2009 09:26:02 +0000 Subject: [PATCH] (missing .= part) r58512#c4384 --- includes/OutputPage.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/OutputPage.php b/includes/OutputPage.php index b349f9b002..4896cd0fe6 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -28,9 +28,9 @@ class OutputPage { var $mContainsOldMagic = 0, $mContainsNewMagic = 0; var $mIsArticleRelated = true; protected $mParserOptions = null; // lazy initialised, use parserOptions() - + var $mFeedLinks = array(); - + var $mEnableClientCache = true; var $mArticleBodyOnly = false; @@ -306,7 +306,7 @@ class OutputPage { } } //build the actual unique request id: - $uriParam = "&urid={$wgStyleVersion}"; + $uriParam .= "&urid={$wgStyleVersion}"; // Add the file modification time if set if( $ftime != 0 ) -- 2.20.1