From 71d0c12564414676c92854bec11016e025f26a1b Mon Sep 17 00:00:00 2001 From: miteruzo Date: Sun, 17 Dec 2023 08:32:25 +0900 Subject: [PATCH] =?UTF-8?q?=E8=AD=A6=E5=91=8A=E5=AF=BE=E5=BF=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- broadcast/index.frm.php | 12 ++++++------ broadcast/index.php | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/broadcast/index.frm.php b/broadcast/index.frm.php index 3a6b53f..2f38220 100644 --- a/broadcast/index.frm.php +++ b/broadcast/index.frm.php @@ -3,11 +3,11 @@ - - - - - + + + + + 伊地知ニジカ放送局 - ニジカ返答ログ @@ -120,7 +120,7 @@ - + diff --git a/broadcast/index.php b/broadcast/index.php index 2e69fab..7448458 100644 --- a/broadcast/index.php +++ b/broadcast/index.php @@ -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');