From aeb9cfc6c94913f7a4dbda3ccba0cf9761426bb3 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Thu, 28 Aug 2014 12:34:29 +0200 Subject: [PATCH] make sure class file is loaded once --- lib/private/migrate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/migrate.php b/lib/private/migrate.php index 8d88181ca19..8351155aa55 100644 --- a/lib/private/migrate.php +++ b/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; } } }