summaryrefslogtreecommitdiff
path: root/it_html.class
diff options
context:
space:
mode:
Diffstat (limited to 'it_html.class')
-rw-r--r--it_html.class2
1 files changed, 1 insertions, 1 deletions
diff --git a/it_html.class b/it_html.class
index 057c410..fb26544 100644
--- a/it_html.class
+++ b/it_html.class
@@ -129,7 +129,7 @@ function __construct($p = array())
foreach (explode(',', $this->p['staticallycallable']) as $func)
{
if ($func && !function_exists($func))
- $code[$func] = "function $func(...\$args) { return call_user_func_array(array(&\$GLOBALS['{$this->p['name']}'], '$func'), \$args); }";
+ $code[$func] = "function $func(...\$args) { return \$GLOBALS['{$this->p['name']}']->$func(...\$args); }";
}
eval(implode('', (array)$code));