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 /apps | |
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 'apps')
-rwxr-xr-x | apps/files_external/lib/config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 068475783cd..9dc3cdd7147 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -231,7 +231,7 @@ class OC_Mount_Config { $file = OC::$SERVERROOT.'/config/mount.php'; } if (is_file($file)) { - $mountPoints = include($file); + $mountPoints = include $file; if (is_array($mountPoints)) { return $mountPoints; } |