Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
switch($level){
case "collection":
[...]
$rv = $config['baseurl'].rawurlencode(SmartStripSlashes($row['path']))."/".$args;
break;
case "album":
[...]
$rv = $config['baseurl'].rawurlencode(SmartStripSlashes($row['collection_path'])) . '/' . rawurlencode(SmartStripSlashes($row['album_path']))."/".$args;
break;
case "picture":
[...]
$rv = $config['baseurl'].str_replace("%2F", "/", rawurlencode(substr(SmartStripSlashes($pic['path']), 0, -4)))."/";
break;
[...]
switch($level){
case "collection":
[...]
$rv = $config['baseurl'].$args;
break;
case "album":
[...]
$rv = $config['baseurl'].rawurlencode(SmartStripSlashes($row['album_path']))."/".$args;
break;
case "picture":
[...]
$rv = $config['baseurl'].str_replace("%2F", "/", rawurlencode(substr(SmartStripSlashes($pic['path']), strpos(SmartStripSlashes($pic['path']), '/')+1, -4)))."/";
break;
[...]
$resolved_path = resolve_path($path);
$resolved_path = resolve_path("your_collection_folder_name/".$path);
1 to 7 of 7