diff options
author | Christian Weber | 2007-10-06 21:45:14 +0000 |
---|---|---|
committer | Christian Weber | 2007-10-06 21:45:14 +0000 |
commit | ad15ebbd1f0c474d6391b70feea52a4c492bc824 (patch) | |
tree | 685d9fa38c365bae940852736edd9f0a038849a3 /it_text.class | |
parent | 923f1455347486077f0de75f064a2350e2420603 (diff) | |
download | itools-ad15ebbd1f0c474d6391b70feea52a4c492bc824.tar.gz itools-ad15ebbd1f0c474d6391b70feea52a4c492bc824.tar.bz2 itools-ad15ebbd1f0c474d6391b70feea52a4c492bc824.zip |
calling text() with 3 args is obsolete, also for us :)
Diffstat (limited to 'it_text.class')
-rw-r--r-- | it_text.class | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/it_text.class b/it_text.class index 3d1ac69..f8b2583 100644 --- a/it_text.class +++ b/it_text.class @@ -125,7 +125,7 @@ function text($label, $language = null, $buggy = false) */ function etext($label, $values = null, $language = null) { - return $this->transmogrify($this->text($label, null, $language), $values); + return $this->transmogrify($this->text($label, $language), $values); } |