警告対応
This commit is contained in:
+2
-2
@@ -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');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user