From 8aaa850832ea7d2d8dae4802ae39424b0a522a6f Mon Sep 17 00:00:00 2001 From: nao-pon Date: Sat, 20 Jun 2015 17:35:09 +0900 Subject: [PATCH] [VD:FTP] `statOwner`, `allowChmodReadOnly` set to `true` on netmount --- php/elFinderVolumeFTP.class.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/php/elFinderVolumeFTP.class.php b/php/elFinderVolumeFTP.class.php index c9d665a31..02c6fef32 100644 --- a/php/elFinderVolumeFTP.class.php +++ b/php/elFinderVolumeFTP.class.php @@ -120,6 +120,8 @@ class elFinderVolumeFTP extends elFinderVolumeDriver { $options['locale'] = $_REQUEST['locale']; } } + $options['statOwner'] = true; + $options['allowChmodReadOnly'] = true; return $options; }