Update common.php

This commit is contained in:
qkqpttgf 2020-09-18 11:12:45 +08:00 committed by GitHub
parent 1b48a0f4e4
commit d92242e1c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -718,6 +718,7 @@ function spurlencode($str, $split='')
$tmp = urlencode($str);
}
$tmp = str_replace('%2520', '%20',$tmp);
$tmp = str_replace('%26amp%3B', '&',$tmp);
return $tmp;
}
@ -971,6 +972,7 @@ function output($body, $statusCode = 200, $headers = ['Content-Type' => 'text/ht
function passhidden($path)
{
if ($_SERVER['admin']) return 0;
$path = str_replace('+','%2B',$path);
$path = str_replace('&','&', path_format(urldecode($path)));
if (getConfig('passfile') != '') {