diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-10-26 13:10:56 +0200 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-10-26 13:10:56 +0200 |
commit | 1888ac0d41823d9d15e28279d3a701412c679460 (patch) | |
tree | 3a0baf572a05089e79cabe32fdcc3f9a80e0b141 | |
parent | c7d64811d68bea0c6c2b181f7d8cb3ad095cff29 (diff) | |
download | nextcloud-server-1888ac0d41823d9d15e28279d3a701412c679460.tar.gz nextcloud-server-1888ac0d41823d9d15e28279d3a701412c679460.zip |
add the possibility to add an preupdate.php
-rwxr-xr-x | lib/app.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/app.php b/lib/app.php index 28757735e04..c9329df91d1 100755 --- a/lib/app.php +++ b/lib/app.php @@ -685,6 +685,10 @@ class OC_App{ * @param string $appid */ public static function updateApp($appid) { + if(file_exists(self::getAppPath($appid).'/appinfo/preupdate.php')) { + self::loadApp($appid); + include self::getAppPath($appid).'/appinfo/preupdate.php'; + } if(file_exists(self::getAppPath($appid).'/appinfo/database.xml')) { OC_DB::updateDbFromStructure(self::getAppPath($appid).'/appinfo/database.xml'); } |