summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
authorMichael Hamann <michael@content-space.de>2011-04-27 20:52:56 +0200
committerMichael Hamann <michael@content-space.de>2011-04-27 20:52:56 +0200
commita1bbd05b4631aae5602c9e74af4b6cd19229fee3 (patch)
treecbd59f43e1f272ab3d6039eaaddf1f2fd3b3fd68 /inc
parent65f40513c558b4d57493485465b12d493911f2a5 (diff)
downloadrpg-a1bbd05b4631aae5602c9e74af4b6cd19229fee3.tar.gz
rpg-a1bbd05b4631aae5602c9e74af4b6cd19229fee3.tar.bz2
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.
Diffstat (limited to 'inc')
-rw-r--r--inc/common.php2
1 files changed, 1 insertions, 1 deletions
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);