make sure class file is loaded once

This commit is contained in:
Arthur Schiwon 2014-08-28 12:34:29 +02:00
parent 1c0cc6c7bc
commit aeb9cfc6c9
1 changed files with 1 additions and 1 deletions

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