diff --git a/common/framework/config.php b/common/framework/config.php index 3b8a0b190..227b4a055 100644 --- a/common/framework/config.php +++ b/common/framework/config.php @@ -25,8 +25,10 @@ class Config } else { - self::$_config = self::convert(); - self::save(); + if (self::$_config = self::convert()) + { + self::save(); + } } return self::$_config; }