1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-06-29 04:55:02 +03:00
This commit is contained in:
Mzhelskiy Maxim 2010-08-05 07:11:35 +00:00
parent 86d87c21d9
commit f3e7c62d98

View file

@ -273,7 +273,7 @@ class Config {
$aKeys=explode('.',$sKey);
$sEval='self::getInstance($sInstance)->aConfig';
foreach ($aKeys as $sK) {
$sEval.="['$sK']";
$sEval.='['.var_export($sK,true).']';
}
$sEval.='=$value;';
eval($sEval);