Update common.php

the ["returnhead"]["Location"] of curl return value seems not existed, change to ["returnhead"]["location"]
pull/686/head
asoul-rec 2023-04-19 08:31:13 -04:00 committed by GitHub
parent 1d4a5817fc
commit 238befc7ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2313,7 +2313,7 @@ function render_list($path = '', $files = [])
$tmp = curl('GET', $file_path, '', [], 1);
if ($tmp['stat']==302) {
error_log1(json_encode($tmp));
$tmp = curl('GET', $tmp["returnhead"]["Location"]);
$tmp = curl('GET', $tmp["returnhead"]["location"]);
}
if (!!$tmp['body']) $html = $tmp['body'];
savecache('customTheme', $html, '', 9999);