2) Refactor App->config[] into Core\PConfig

This commit is contained in:
Philipp Holzer 2019-02-03 19:05:44 +01:00
parent d43a8184f4
commit f40c57fc20
No known key found for this signature in database
GPG key ID: 517BE60E2CE5C8A5
2 changed files with 6 additions and 2 deletions

View file

@ -28,7 +28,7 @@ class JITPConfigAdapter implements IPConfigAdapter
} }
} else if ($cat != 'config') { } else if ($cat != 'config') {
// Negative caching // Negative caching
PConfig::setPConfigValue($uid, $cat, "!<unset>!"); PConfig::setPConfigValue($uid, $cat, null, "!<unset>!");
} }
DBA::close($pconfigs); DBA::close($pconfigs);
} }

View file

@ -203,7 +203,11 @@ class PConfig extends BaseObject
self::$config[$uid][$cat] = []; self::$config[$uid][$cat] = [];
} }
self::$config[$uid][$cat][$k] = $value; if ($k === null) {
self::$config[$uid][$cat] = $value;
} else {
self::$config[$uid][$cat][$k] = $value;
}
} }
/** /**