diff options
author | Brice Maron <brice@bmaron.net> | 2012-06-22 20:58:28 +0000 |
---|---|---|
committer | Brice Maron <brice@bmaron.net> | 2012-06-22 20:58:52 +0000 |
commit | b5e3e150eb9737022d0c9080e84bac4d290c96a7 (patch) | |
tree | 8e12feba08f0b16bd225d0136f9e70e6c0dd6464 /lib/db.php | |
parent | ded9ea5ad3fd46516ca9ea7849dbdfbe753a1dc5 (diff) | |
download | nextcloud-server-b5e3e150eb9737022d0c9080e84bac4d290c96a7.tar.gz nextcloud-server-b5e3e150eb9737022d0c9080e84bac4d290c96a7.zip |
Correction of path looking for apps and css
Diffstat (limited to 'lib/db.php')
-rw-r--r-- | lib/db.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/db.php b/lib/db.php index bcc8657b4a4..dc9e3392d0a 100644 --- a/lib/db.php +++ b/lib/db.php @@ -526,7 +526,7 @@ class OC_DB { self::removeDBStructure( OC::$SERVERROOT . '/db_structure.xml' ); foreach($apps as $app){ - $path = OC::$SERVERROOT.'/apps/'.$app.'/appinfo/database.xml'; + $path = self::getAppPath($app).'/appinfo/database.xml'; if(file_exists($path)){ self::removeDBStructure( $path ); } |