Merge pull request #10689 from owncloud/load_classfile_once

make sure class file is loaded once
remotes/origin/fix-10825
Morris Jobke 12 years ago
commit b82e44b448
  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