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

Commit

Permalink
Fix some specific zip extraction case on Windows Server.
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed Jan 13, 2016
1 parent 7064ebd commit a80a619
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions core/src/plugins/access.fs/class.fsAccessDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -1598,6 +1598,7 @@ public function extractArchiveItemPreCallback($status, $data){
$fullname = $data['filename'];
$size = $data['size'];
$realBase = AJXP_MetaStreamWrapper::getRealFSReference($this->urlBase);
$realBase = str_replace("\\", "/", $realBase);
$repoName = $this->urlBase.str_replace($realBase, "", $fullname);

$toNode = new AJXP_Node($repoName);
Expand Down

0 comments on commit a80a619

Please sign in to comment.