Merge pull request #65 from Aldarone/simple-unescaped-slashes

Slashes unescaping seemed overcomplicated.
This commit is contained in:
Tom.C. 2014-11-24 21:05:00 +01:00
commit a555cdf925
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,7 @@ $dirs = array();
if (is_file($currentdir.'/'.$file.'.html')) {
$img_captions[$file] = $file.'::'.htmlspecialchars(file_get_contents($currentdir.'/'.$file.'.html'),ENT_QUOTES);
}
$linkUrl = join("/", array_merge(array_map(rawurlencode, split("/", $currentdir)), array(rawurlencode($file))));
$linkUrl = str_replace('%2F', '/', rawurlencode("$currentdir/$file"));
$imgParams = http_build_query(
array(
'filename' => "$thumbdir/$file",