Fix recursion when running an update script

This commit is contained in:
Bart Visscher 2012-06-27 14:56:34 +02:00
parent 12f7cb8767
commit 2d8a380a21
1 changed files with 5 additions and 0 deletions

View File

@ -36,6 +36,7 @@ class OC_App{
static private $appInfo = array(); static private $appInfo = array();
static private $appTypes = array(); static private $appTypes = array();
static private $loadedApps = array(); static private $loadedApps = array();
static private $checkedApps = array();
/** /**
* @brief loads all apps * @brief loads all apps
@ -530,6 +531,10 @@ class OC_App{
* check if the app need updating and update when needed * check if the app need updating and update when needed
*/ */
public static function checkUpgrade($app) { public static function checkUpgrade($app) {
if (in_array($app, self::$checkedApps)) {
return;
}
self::$checkedApps[] = $app;
$versions = self::getAppVersions(); $versions = self::getAppVersions();
$currentVersion=OC_App::getAppVersion($app); $currentVersion=OC_App::getAppVersion($app);
if ($currentVersion) { if ($currentVersion) {