Merge pull request #10689 from owncloud/load_classfile_once

make sure class file is loaded once
This commit is contained in:
Morris Jobke 2014-10-23 11:41:00 +02:00
commit b82e44b448

View file

@ -62,7 +62,7 @@ class OC_Migrate{
foreach($apps as $app) {
$path = OC_App::getAppPath($app) . '/appinfo/migrate.php';
if( file_exists( $path ) ) {
include $path;
include_once $path;
}
}
}