diff options
author | Urban Müller | 2007-10-04 15:29:31 +0000 |
---|---|---|
committer | Urban Müller | 2007-10-04 15:29:31 +0000 |
commit | fdfbe9af607f280e40b13117451f624ddce74e4a (patch) | |
tree | d6186e45800ea7bd7e2332c20a9e76fcb0788af9 /auto_prepend.php | |
parent | 4373a118b81d5265a2c5b0a828eb8dbd5d335d83 (diff) | |
download | itools-fdfbe9af607f280e40b13117451f624ddce74e4a.tar.gz itools-fdfbe9af607f280e40b13117451f624ddce74e4a.tar.bz2 itools-fdfbe9af607f280e40b13117451f624ddce74e4a.zip |
renamed params
Diffstat (limited to 'auto_prepend.php')
-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); } /** |