Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Moeller <mail@felixmoeller.de>2012-10-22 23:40:33 +0400
committerFelix Moeller <mail@felixmoeller.de>2012-10-22 23:40:33 +0400
commit03581ef463184081f8faa3f86bb6d21ee8bbc66d (patch)
treef199ec40d897775a8dfcb1d1ace150de88ae51f3 /lib/migrate.php
parent37296b8b6dd7a1b96c3e4fa326995bf3747ac116 (diff)
Correct a first issue Checkstyle is complaining about ...
This is BracketsNotRequired
Diffstat (limited to 'lib/migrate.php')
-rw-r--r--lib/migrate.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/migrate.php b/lib/migrate.php
index 611a935ee5d..3694ea877a0 100644
--- a/lib/migrate.php
+++ b/lib/migrate.php
@@ -66,7 +66,7 @@ class OC_Migrate{
foreach($apps as $app) {
$path = OC_App::getAppPath($app) . '/appinfo/migrate.php';
if( file_exists( $path ) ) {
- include( $path );
+ include $path;
}
}
}