diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2014-08-28 12:34:29 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2014-08-28 12:34:29 +0200 |
commit | aeb9cfc6c94913f7a4dbda3ccba0cf9761426bb3 (patch) | |
tree | d8cdeefa95af5f5085bc324e7541e88e7cfd6eea /lib | |
parent | 1c0cc6c7bcf0125aa1af9298e846d0c740c1a7c4 (diff) | |
download | nextcloud-server-aeb9cfc6c94913f7a4dbda3ccba0cf9761426bb3.tar.gz nextcloud-server-aeb9cfc6c94913f7a4dbda3ccba0cf9761426bb3.zip |
make sure class file is loaded once
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/migrate.php | 2 |
1 files changed, 1 insertions, 1 deletions
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; } } } |