From 5b29e1817f32454d79c3efa9d2a7688d00a85fbd Mon Sep 17 00:00:00 2001 From: Thomas BrĂ¼derli Date: Wed, 3 Jan 2007 11:54:51 +0000 Subject: Check if global function already exists before creating it --- html.class | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html.class b/html.class index 9109efd..cca2de7 100644 --- a/html.class +++ b/html.class @@ -81,7 +81,10 @@ function it_html($config = array()) # Create global functions for methods that are statically callable (have same arguments as global stubs) foreach (explode(",", $this->_staticallycallable) as $func) - $code[$func] = "function $func() { \$args = func_get_args(); return call_user_func_array(array(&\$GLOBALS['$this->_name'], '$func'), \$args); }"; + { + if ($func && !function_exists($func)) + $code[$func] = "function $func() { \$args = func_get_args(); return call_user_func_array(array(&\$GLOBALS['$this->_name'], '$func'), \$args); }"; + } eval(join("", (array)$code)); -- cgit v1.2.3