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

Commit 035e144

Browse files
committed
Merge pull request #852 from Ellega/PowerFS_fix
Fix PowerFS when accent in directory
2 parents 30ea81e + 4081ed2 commit 035e144

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/plugins/action.powerfs/class.PowerFSController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ public function switchAction($action, $httpVars, $fileVars)
119119
AJXP_Controller::applyActionInBackground(ConfService::getRepository()->getId(), $action, $httpVars);
120120
AJXP_XMLWriter::header();
121121
$bgParameters = array(
122-
"dir" => $dir,
123-
"archive_name" => $archiveName,
122+
"dir" => SystemTextEncoding::toUTF8($dir),
123+
"archive_name" => SystemTextEncoding::toUTF8($archiveName),
124124
"on_end" => (isSet($httpVars["on_end"])?$httpVars["on_end"]:"reload"),
125125
"ope_id" => $opeId
126126
);

0 commit comments

Comments
 (0)