diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-06-15 11:18:38 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-06-15 11:18:44 +0200 |
commit | 2b228fba3463722ad19ea6ccd150b96772508791 (patch) | |
tree | 84b12d753c793694bbf8aa3a7b4f9c538274ca0f /lib | |
parent | 0d3f5f736f8e0d32470ea31980bae1094fcab50a (diff) | |
download | nextcloud-server-2b228fba3463722ad19ea6ccd150b96772508791.tar.gz nextcloud-server-2b228fba3463722ad19ea6ccd150b96772508791.zip |
Load app before running update script
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/app.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/app.php b/lib/app.php index 0c51e3c5532..7fdfc93138f 100755 --- a/lib/app.php +++ b/lib/app.php @@ -542,6 +542,7 @@ class OC_App{ return; } if(file_exists(OC::$APPSROOT.'/apps/'.$appid.'/appinfo/update.php')){ + self::loadApp($appid); include OC::$APPSROOT.'/apps/'.$appid.'/appinfo/update.php'; } |