dont re-read the config values for an app when a non existing key is fetched
This commit is contained in:
parent
47245e7417
commit
2e195dbdae
|
@ -41,6 +41,8 @@ class OC_Appconfig {
|
|||
|
||||
private static $cache = array();
|
||||
|
||||
private static $appsLoaded = array();
|
||||
|
||||
/**
|
||||
* @brief Get all apps using the config
|
||||
* @return array with app ids
|
||||
|
@ -86,12 +88,15 @@ class OC_Appconfig {
|
|||
if (!isset(self::$cache[$app])) {
|
||||
self::$cache[$app] = array();
|
||||
}
|
||||
if (array_search($app, self::$appsLoaded) === false) {
|
||||
$query = OC_DB::prepare('SELECT `configvalue`, `configkey` FROM `*PREFIX*appconfig`'
|
||||
. ' WHERE `appid` = ?');
|
||||
$result = $query->execute(array($app));
|
||||
while ($row = $result->fetchRow()) {
|
||||
self::$cache[$app][$row['configkey']] = $row['configvalue'];
|
||||
}
|
||||
self::$appsLoaded[] = $app;
|
||||
}
|
||||
return self::$cache[$app];
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue