diff options
author | Ben Coburn <btcoburn@silicodon.net> | 2006-07-10 11:18:20 +0200 |
---|---|---|
committer | Ben Coburn <btcoburn@silicodon.net> | 2006-07-10 11:18:20 +0200 |
commit | 746855cf48e51565e70ed332fac9025865c52d8d (patch) | |
tree | 7ebdfd61c48f2fd815a21cb4d3d84a51410453b2 /inc/template.php | |
parent | bad905f13d90b80add3f028b9f6c77e071e0d746 (diff) | |
download | rpg-746855cf48e51565e70ed332fac9025865c52d8d.tar.gz rpg-746855cf48e51565e70ed332fac9025865c52d8d.tar.bz2 |
cleanup undefined constant notices
Undefined constants replaced with strings, see
http://www.php.net/manual/en/language.types.array.php#language.types.array.foo-bar
darcs-hash:20060710091820-05dcb-cfccff2bdd633b929470c60d8eee096f50ab4c18.gz
Diffstat (limited to 'inc/template.php')
-rw-r--r-- | inc/template.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/template.php b/inc/template.php index f9e69d340..f14472181 100644 --- a/inc/template.php +++ b/inc/template.php @@ -42,11 +42,11 @@ function tpl_content() { ob_start(); - trigger_event('TPL_ACT_RENDER',$ACT,tpl_content_core); + trigger_event('TPL_ACT_RENDER',$ACT,'tpl_content_core'); $html_output = ob_get_clean(); - trigger_event('TPL_CONTENT_DISPLAY',$html_output,ptln); + trigger_event('TPL_CONTENT_DISPLAY',$html_output,'ptln'); } function tpl_content_core(){ |