Skip to content

Commit

Permalink
Merge pull request #68 from Kravalg/patch-1
Browse files Browse the repository at this point in the history
Fixed bug in method ElFinder::genPathHash()
  • Loading branch information
MihailDev authored Jun 17, 2016
2 parents 25574c3 + c0f9fcd commit efd2a95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ElFinder.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public static function genPathHash($path)
$volume = 1;
}
$hash = rtrim(strtr(base64_encode($path), '+/=', '-_.'), '.');
return 'elf_l' . $volume .'_' . $hash;
return 'elf_fls' . $volume .'_' . $hash;
}

public static function getManagerUrl($controller, $params = [])
Expand Down

0 comments on commit efd2a95

Please sign in to comment.