Fixed app path

This commit is contained in:
Tom Needham 2012-06-30 10:55:38 +00:00
parent cfc78d44bb
commit b2cb7d54d1
1 changed files with 1 additions and 1 deletions

View File

@ -528,7 +528,7 @@ class OC_DB {
self::removeDBStructure( OC::$SERVERROOT . '/db_structure.xml' );
foreach($apps as $app){
$path = self::getAppPath($app).'/appinfo/database.xml';
$path = OC_App::getAppPath($app).'/appinfo/database.xml';
if(file_exists($path)){
self::removeDBStructure( $path );
}