diff options
author | Urban Müller | 2014-04-09 16:46:45 +0200 |
---|---|---|
committer | Urban Müller | 2014-04-09 16:46:45 +0200 |
commit | 9ad25fa3a0325f3702b4118cacc32cef8769ede5 (patch) | |
tree | 6ff00fee90307fafbcdedc43831d7b7f3a87e00c | |
parent | 25738397ab8d9d531edfcdc92fe27760879defab (diff) | |
download | itools-9ad25fa3a0325f3702b4118cacc32cef8769ede5.tar.gz itools-9ad25fa3a0325f3702b4118cacc32cef8769ede5.tar.bz2 itools-9ad25fa3a0325f3702b4118cacc32cef8769ede5.zip |
allow override of U function
-rw-r--r-- | auto_prepend.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/auto_prepend.php b/auto_prepend.php index de6e741..65be69f 100644 --- a/auto_prepend.php +++ b/auto_prepend.php @@ -155,7 +155,7 @@ function T_exists($label, $language = null) function U(/* ... */) { $args = func_get_args(); - return call_user_func_array(array('it_html', 'U'), $args); + return call_user_func_array(array($GLOBALS['it_html'], 'U'), $args); } |