fix &
parent
9205015782
commit
0a0162abe2
|
@ -1921,11 +1921,11 @@ function render_list($path = '', $files = [])
|
||||||
//$htmlcontent = fetch_files(spurlencode(path_format(urldecode($path) . '/index.html'), '/'))['content'];
|
//$htmlcontent = fetch_files(spurlencode(path_format(urldecode($path) . '/index.html'), '/'))['content'];
|
||||||
$htmlcontent = get_content(spurlencode(path_format(urldecode($path) . '/index.html'), '/'))['content'];
|
$htmlcontent = get_content(spurlencode(path_format(urldecode($path) . '/index.html'), '/'))['content'];
|
||||||
return output($htmlcontent['body'], $htmlcontent['stat']);
|
return output($htmlcontent['body'], $htmlcontent['stat']);
|
||||||
}//echo $path . "<br>\n";
|
}
|
||||||
//$path = str_replace('%20','%2520',$path);
|
//$path = str_replace('%20','%2520',$path);
|
||||||
$path = str_replace('+','%2B',$path);
|
$path = str_replace('+','%2B',$path);
|
||||||
$path = str_replace('&','&',path_format(urldecode($path))) ;
|
$path = path_format(urldecode($path));
|
||||||
//echo $path . "<br>\n";
|
//$path = str_replace('&','&', $path) ;
|
||||||
//$path = str_replace('%20',' ',$path);
|
//$path = str_replace('%20',' ',$path);
|
||||||
$path = str_replace('#','%23',$path);
|
$path = str_replace('#','%23',$path);
|
||||||
$p_path='';
|
$p_path='';
|
||||||
|
|
Loading…
Reference in New Issue