From a1bbd05b4631aae5602c9e74af4b6cd19229fee3 Mon Sep 17 00:00:00 2001 From: Michael Hamann Date: Wed, 27 Apr 2011 20:52:56 +0200 Subject: Remove deprecated call-time pass-by-reference in inc/common.php The value is still passed by reference as the parameter of the called function is declared as reference. --- inc/common.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'inc') diff --git a/inc/common.php b/inc/common.php index ac7ddd653..bbdda16da 100644 --- a/inc/common.php +++ b/inc/common.php @@ -845,7 +845,7 @@ function pageTemplate($id){ // load the content $data['tpl'] = io_readFile($data['tplfile']); } - if($data['doreplace']) parsePageTemplate(&$data); + if($data['doreplace']) parsePageTemplate($data); } $evt->advise_after(); unset($evt); -- cgit v1.2.3