Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Fix file name in zoho editor
Browse files Browse the repository at this point in the history
Fix file name in zoho editor in :
- in title
- in file name proposed with export tools
  • Loading branch information
Nanomani committed Mar 17, 2016
1 parent 942b50e commit 8a4b70e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/plugins/editor.zoho/class.ZohoEditor.php
Expand Up @@ -147,7 +147,7 @@ public function switchAction($action, $httpVars, $filesVars)
'apikey' => $this->getFilteredOption("ZOHO_API_KEY", $repository),
'output' => 'url',
'lang' => "en",
'filename' => urlencode(basename($file)),
'filename' => SystemTextEncoding::toUTF8(basename($file)),
'persistence' => 'false',
'format' => $extension,
'mode' => 'normaledit',
Expand Down

0 comments on commit 8a4b70e

Please sign in to comment.