diff options
-rw-r--r-- | auto_prepend.php | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/auto_prepend.php b/auto_prepend.php index c1871f2..b27d6e3 100644 --- a/auto_prepend.php +++ b/auto_prepend.php @@ -86,14 +86,13 @@ function EDX() /** * Return a text in the selected language * @param $label Label of text to return - * @param $raw Optional (deprecated) - * @param $language Optional language to return text in. + * @param $language Optional language to return text in * @return Localized text string */ -function T($label, $raw = null, $language = null) +function T($label, $language = null, $dummy = false) { it_text::init(); - return $GLOBALS['it_text']->text($label, $raw, $language); + return $GLOBALS['it_text']->text($label, $language, $dummy); } /** |