diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-03-12 16:15:02 +0100 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-03-12 16:15:02 +0100 |
commit | 84788d14f7afafe604c60f23641ad4f60cfa75ea (patch) | |
tree | 6cbf737f2c921ad997a624d399cca778b15d98bf /lib | |
parent | 403ecaff3465bac139b04f9baae6ec41a875c012 (diff) | |
download | nextcloud-server-84788d14f7afafe604c60f23641ad4f60cfa75ea.tar.gz nextcloud-server-84788d14f7afafe604c60f23641ad4f60cfa75ea.zip |
fix comment
Diffstat (limited to 'lib')
-rw-r--r-- | lib/filestorage/local.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/filestorage/local.php b/lib/filestorage/local.php index 032739a5b0e..359e6223e56 100644 --- a/lib/filestorage/local.php +++ b/lib/filestorage/local.php @@ -20,7 +20,7 @@ class OC_Filestorage_Local extends OC_Filestorage_Common{ return opendir($this->datadir.$path); } public function is_dir($path) { - //work arround to detect /Shared as folder, only needed for OC4.5 + //workaround to detect /Shared as folder, only needed for OC4.5 if($path == "files/Shared") { return true; } |