src build elFinder-2.1-0f82e69

This commit is contained in:
nao-pon
2017-07-05 13:30:08 +09:00
parent 3676017ae6
commit 995f71d3a4
7 changed files with 41 additions and 13 deletions
+5 -2
View File
@@ -407,7 +407,9 @@ abstract class elFinderVolumeDriver {
'utf8fix' => false,
// й ё Й Ё Ø Å
'utf8patterns' => array("\u0438\u0306", "\u0435\u0308", "\u0418\u0306", "\u0415\u0308", "\u00d8A", "\u030a"),
'utf8replace' => array("\u0439", "\u0451", "\u0419", "\u0401", "\u00d8", "\u00c5")
'utf8replace' => array("\u0439", "\u0451", "\u0419", "\u0401", "\u00d8", "\u00c5"),
// Header to use to accelerate sending local files to clients (e.g. 'X-Sendfile', 'X-Accel-Redirect')
'xsendfile' => ''
);
/**
@@ -1604,7 +1606,8 @@ abstract class elFinderVolumeDriver {
'syncChkAsTs' => intval($this->options['syncChkAsTs']),
'syncMinMs' => intval($this->options['syncMinMs']),
'i18nFolderName' => intval($this->options['i18nFolderName']),
'tmbCrop' => intval($this->options['tmbCrop'])
'tmbCrop' => intval($this->options['tmbCrop']),
'xsendfile' => $this->options['xsendfile']
);
if (! empty($this->options['trashHash'])) {
$opts['trashHash'] = $this->options['trashHash'];