make sure class file is loaded once

remotes/origin/fix-10825
Arthur Schiwon 2014-08-28 12:34:29 +07:00
parent 1c0cc6c7bc
commit aeb9cfc6c9
1 changed files with 1 additions and 1 deletions

@ -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;
}
}
}