diff options
author | Antonio Gallo <tonicucoz@gmail.com> | 2011-07-28 20:27:23 +0000 |
---|---|---|
committer | Antonio Gallo <tonicucoz@gmail.com> | 2011-07-28 20:27:23 +0000 |
commit | e7b3717614621f14695ab6ca6dda6dd17ba3d65c (patch) | |
tree | c8e6061aef3ff7bad5a17e1aecaf441d35e282cb /h-source/Library/Array | |
parent | 0de74c6879d263645770de3d6b3ce7123f5241d6 (diff) |
added new easygiant library
Diffstat (limited to 'h-source/Library/Array')
-rw-r--r-- | h-source/Library/Array/Validate/Base.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/h-source/Library/Array/Validate/Base.php b/h-source/Library/Array/Validate/Base.php index 17ccc89..7e25d07 100644 --- a/h-source/Library/Array/Validate/Base.php +++ b/h-source/Library/Array/Validate/Base.php @@ -31,13 +31,13 @@ class Array_Validate_Base protected $_resultString; //reference to the class arraycheckStrings containing all the result strings - public function __construct($lang = 'Eng') + public function __construct($lang = 'En') { $this->_lang = $lang; $stringClass = 'Lang_'.$this->_lang.'_ValCondStrings'; if (!class_exists($stringClass)) { - $stringClass = 'Lang_Eng_ValCondStrings'; + $stringClass = 'Lang_En_ValCondStrings'; } $this->_resultString = new $stringClass(); } |