diff options
author | Felix Moeller <mail@felixmoeller.de> | 2012-10-22 21:40:33 +0200 |
---|---|---|
committer | Felix Moeller <mail@felixmoeller.de> | 2012-10-22 21:40:33 +0200 |
commit | 03581ef463184081f8faa3f86bb6d21ee8bbc66d (patch) | |
tree | f199ec40d897775a8dfcb1d1ace150de88ae51f3 /lib/migrate.php | |
parent | 37296b8b6dd7a1b96c3e4fa326995bf3747ac116 (diff) | |
download | nextcloud-server-03581ef463184081f8faa3f86bb6d21ee8bbc66d.tar.gz nextcloud-server-03581ef463184081f8faa3f86bb6d21ee8bbc66d.zip |
Correct a first issue Checkstyle is complaining about ...
This is BracketsNotRequired
Diffstat (limited to 'lib/migrate.php')
-rw-r--r-- | lib/migrate.php | 2 |
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; } } } |