diff options
author | Christian Schneider | 2007-10-01 18:14:00 +0000 |
---|---|---|
committer | Christian Schneider | 2007-10-01 18:14:00 +0000 |
commit | bbaf65234fc69effce584b6e6b89173693ad907a (patch) | |
tree | 6f6d0173fa5db1b3f9868e41afd6fcd074a3c34f /it_text.class | |
parent | e11cbb4456fcd49f4375982a962c72ff10b80934 (diff) | |
download | itools-bbaf65234fc69effce584b6e6b89173693ad907a.tar.gz itools-bbaf65234fc69effce584b6e6b89173693ad907a.tar.bz2 itools-bbaf65234fc69effce584b6e6b89173693ad907a.zip |
Added it::date() (and made it_text silent when texts.php is missing)
Diffstat (limited to 'it_text.class')
-rw-r--r-- | it_text.class | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/it_text.class b/it_text.class index 76e8aed..de3fe52 100644 --- a/it_text.class +++ b/it_text.class @@ -34,10 +34,10 @@ function it_text($p = null) # Read $this->statictext from php file if it's not defined yet if (!$this->statictext) - include($this->p['phpfile']); + @include($this->p['phpfile']); # Get array of supported languages and their names - $this->languages_available = $this->statictext['_']; + $this->languages_available = (array)$this->statictext['_']; foreach($this->languages_available as $code => $languagename) { # Only use a language in browser/cookie detection below if it's not disabled by a leading '-' |