Merge pull request #65 from Aldarone/simple-unescaped-slashes
Slashes unescaping seemed overcomplicated.
This commit is contained in:
commit
a555cdf925
1 changed files with 1 additions and 1 deletions
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue