Skip to content

Commit 5f760e8

Browse files
committed
Release version 1.1.30 (now with updated yiilite)
1 parent 8e288a0 commit 5f760e8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

framework/yiilite.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class YiiBase
4141
private static $_logger;
4242
public static function getVersion()
4343
{
44-
return '1.1.30-dev';
44+
return '1.1.30';
4545
}
4646
public static function createWebApplication($config=null)
4747
{
@@ -1345,8 +1345,8 @@ public function getLocaleDataPath()
13451345
}
13461346
public function setLocaleDataPath($value)
13471347
{
1348-
$property=new ReflectionProperty($this->localeClass,'dataPath');
1349-
$property->setValue($value);
1348+
$class=new ReflectionClass($this->localeClass);
1349+
$class->setStaticPropertyValue('dataPath',$value);
13501350
}
13511351
public function getNumberFormatter()
13521352
{

0 commit comments

Comments
 (0)