From 3ca3494e623bfd4b05c4fcf968f4211f3b504e14 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Fri, 1 Jul 2011 22:01:48 +0000 Subject: [PATCH] Removed ampersand in HTMLFileCache constructor --- includes/cache/HTMLFileCache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/cache/HTMLFileCache.php b/includes/cache/HTMLFileCache.php index 0a01bb7ab5..1095da2c97 100644 --- a/includes/cache/HTMLFileCache.php +++ b/includes/cache/HTMLFileCache.php @@ -27,7 +27,7 @@ class HTMLFileCache { var $mTitle; var $mFileCache, $mType; - public function __construct( &$title, $type = 'view' ) { + public function __construct( $title, $type = 'view' ) { $this->mTitle = $title; $this->mType = ($type == 'raw' || $type == 'view' ) ? $type : false; $this->fileCacheName(); // init name -- 2.20.1