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 | |
parent | cd084d661f815e5eb58ef2307d36f3aef131748f (diff) |
Fixed Issue#164
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | framework/I18N/core/CultureInfo.php | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,5 @@ Version 3.1.6 to be released +BUG: Issue#164 - CultureInfo::validCulture should be declared as a static method (Christophe) Version 3.1.5 May 24, 2009 BUG: Issue#55 - TPropertyAccess.get and has don't recognize magic getter __get (Yves) 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());
|