We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e288a0 commit 5f760e8Copy full SHA for 5f760e8
framework/yiilite.php
@@ -41,7 +41,7 @@ class YiiBase
41
private static $_logger;
42
public static function getVersion()
43
{
44
- return '1.1.30-dev';
+ return '1.1.30';
45
}
46
public static function createWebApplication($config=null)
47
@@ -1345,8 +1345,8 @@ public function getLocaleDataPath()
1345
1346
public function setLocaleDataPath($value)
1347
1348
- $property=new ReflectionProperty($this->localeClass,'dataPath');
1349
- $property->setValue($value);
+ $class=new ReflectionClass($this->localeClass);
+ $class->setStaticPropertyValue('dataPath',$value);
1350
1351
public function getNumberFormatter()
1352
0 commit comments