このコミットが含まれているのは:
守矢諏訪子 2022-05-20 22:15:02 +09:00
コミット 0687211d79
1個のファイルの変更9行の追加0行の削除

ファイルの表示

@ -54,6 +54,15 @@
else {
$url = str_replace('https://', '', $_POST['hozonsite']);
$url = str_replace('http://', '', $url);
if (
!str_ends_with($url, '.html') &&
!str_ends_with($url, '/') &&
!str_ends_with($url, '.htm') &&
!str_ends_with($url, '.xhtml') &&
!str_ends_with($url, '.php') &&
!str_ends_with($url, '.asp') &&
!str_ends_with($url, '.aspx')
) $url = $url.'/';
$fullurl = 'archive/'.time();
$exists = glob('archive/*/'.$url);