make sure class file is loaded once

remotes/origin/fix-10825
Arthur Schiwon 10 years ago
parent 1c0cc6c7bc
commit aeb9cfc6c9
  1. 2
      lib/private/migrate.php

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

Loading…
Cancel
Save