diff options
author | Michael Hamann <michael@content-space.de> | 2011-02-07 23:23:32 +0100 |
---|---|---|
committer | Michael Hamann <michael@content-space.de> | 2011-02-07 23:23:32 +0100 |
commit | 3d7ac595bb629f3ee3bf26cefe9309e1d20d4470 (patch) | |
tree | cf1ec27b12f7bae620bee1e1a57260afb7d7afaa /inc | |
parent | 28ac81641d6db55bfadc51abf2ff97157c3cfdf4 (diff) | |
download | rpg-3d7ac595bb629f3ee3bf26cefe9309e1d20d4470.tar.gz rpg-3d7ac595bb629f3ee3bf26cefe9309e1d20d4470.tar.bz2 |
Fix namespace template loading (load $data['tplfile'] instead of $data['tpl'])
Diffstat (limited to 'inc')
-rw-r--r-- | inc/common.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/common.php b/inc/common.php index 23d9c7155..ac7ddd653 100644 --- a/inc/common.php +++ b/inc/common.php @@ -843,7 +843,7 @@ function pageTemplate($id){ } } // load the content - $data['tpl'] = io_readFile($data['tpl']); + $data['tpl'] = io_readFile($data['tplfile']); } if($data['doreplace']) parsePageTemplate(&$data); } |