summaryrefslogtreecommitdiffstats
path: root/lib/filesystem.php
diff options
context:
space:
mode:
authorFelix Moeller <mail@felixmoeller.de>2012-10-22 21:40:33 +0200
committerFelix Moeller <mail@felixmoeller.de>2012-10-22 21:40:33 +0200
commit03581ef463184081f8faa3f86bb6d21ee8bbc66d (patch)
treef199ec40d897775a8dfcb1d1ace150de88ae51f3 /lib/filesystem.php
parent37296b8b6dd7a1b96c3e4fa326995bf3747ac116 (diff)
downloadnextcloud-server-03581ef463184081f8faa3f86bb6d21ee8bbc66d.tar.gz
nextcloud-server-03581ef463184081f8faa3f86bb6d21ee8bbc66d.zip
Correct a first issue Checkstyle is complaining about ...
This is BracketsNotRequired
Diffstat (limited to 'lib/filesystem.php')
-rw-r--r--lib/filesystem.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/filesystem.php b/lib/filesystem.php
index 00682573dd9..09ccf9de4df 100644
--- a/lib/filesystem.php
+++ b/lib/filesystem.php
@@ -210,7 +210,7 @@ class OC_Filesystem{
static private function loadSystemMountPoints($user) {
if(is_file(OC::$SERVERROOT.'/config/mount.php')) {
- $mountConfig=include(OC::$SERVERROOT.'/config/mount.php');
+ $mountConfig=include OC::$SERVERROOT.'/config/mount.php';
if(isset($mountConfig['global'])) {
foreach($mountConfig['global'] as $mountPoint=>$options) {
self::mount($options['class'],$options['options'],$mountPoint);