[volume:local] fix _fopen() mode option

This commit is contained in:
nao-pon
2015-01-23 16:05:12 +09:00
parent 67e07191b9
commit 47d1cf0e6b
+1 -1
View File
@@ -415,7 +415,7 @@ class elFinderVolumeLocalFileSystem extends elFinderVolumeDriver {
* @author Dmitry (dio) Levashov
**/
protected function _fopen($path, $mode='rb') {
return @fopen($path, 'r');
return @fopen($path, $mode);
}
/**