diff options
author | Christophe.Boulain <> | 2009-05-29 06:54:24 +0000 |
---|---|---|
committer | Christophe.Boulain <> | 2009-05-29 06:54:24 +0000 |
commit | baa16b4831f2a64ab5febb1b690612f24bb72b8a (patch) | |
tree | a7a7054ee3641c1cd3a882676184fe7725e01576 /framework | |
parent | cd084d661f815e5eb58ef2307d36f3aef131748f (diff) |
Fixed Issue#164
Diffstat (limited to 'framework')
-rw-r--r-- | framework/I18N/core/CultureInfo.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/I18N/core/CultureInfo.php b/framework/I18N/core/CultureInfo.php index 7ee50bba..18aae74d 100644 --- a/framework/I18N/core/CultureInfo.php +++ b/framework/I18N/core/CultureInfo.php @@ -218,7 +218,7 @@ class CultureInfo * @param string a culture
* @return boolean true if valid, false otherwise.
*/
- public function validCulture($culture)
+ public static function validCulture($culture)
{
if(preg_match('/^[_\\w]+$/', $culture))
return is_file(self::dataDir().$culture.self::fileExt());
|