警告対応

This commit is contained in:
miteruzo
2023-12-17 08:32:25 +09:00
parent b23e04af75
commit 71d0c12564
2 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -12,8 +12,8 @@ $length = (int) ($_GET['max'] ?? 20);
$asc = ($_GET['asc'] ?? 0) != 0;
$keyword = trim ($_GET['q'] ?? '');
$date_start = $_GET['start'] ?: null;
$date_end = $_GET['end'] ?: null;
$date_start = ($_GET['start'] ?? null) ?: null;
$date_end = ($_GET['end'] ?? null) ?: null;
$f = fopen (LOG_PATH, 'r');