summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe.Boulain <>2009-05-29 06:54:24 +0000
committerChristophe.Boulain <>2009-05-29 06:54:24 +0000
commitbaa16b4831f2a64ab5febb1b690612f24bb72b8a (patch)
treea7a7054ee3641c1cd3a882676184fe7725e01576
parentcd084d661f815e5eb58ef2307d36f3aef131748f (diff)
Fixed Issue#164
-rw-r--r--HISTORY1
-rw-r--r--framework/I18N/core/CultureInfo.php2
2 files changed, 2 insertions, 1 deletions
diff --git a/HISTORY b/HISTORY
index ecf525d6..e3e78035 100644
--- a/HISTORY
+++ b/HISTORY
@@ -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());