1
1
Fork 0

Fixed code structure

This commit is contained in:
Michael Vogel 2016-10-23 22:12:45 +00:00
commit b99f5b576e
4 changed files with 26 additions and 22 deletions

View file

@ -134,7 +134,7 @@ class Config {
$a->config[$family][$key] = $value;
// manage array value
$dbvalue = (is_array($value) ? serialize($value):$value);
$dbvalue = (is_array($value) ? serialize($value) : $value);
$dbvalue = (is_bool($dbvalue) ? intval($dbvalue) : $dbvalue);
if (is_null($stored)) {