From 7b912d21fce84fb7f1a1a97376d7bc11e092fe70 Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Mon, 26 Dec 2022 16:27:36 +0900 Subject: [PATCH] Fix include filename of IpFilter.php --- common/constants.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/constants.php b/common/constants.php index c9b21cd81..6ac1da735 100644 --- a/common/constants.php +++ b/common/constants.php @@ -53,7 +53,7 @@ else */ if (isset($_SERVER['HTTP_CF_CONNECTING_IP'])) { - include_once __DIR__ . '/framework/filters/ipfilter.php'; + include_once __DIR__ . '/framework/filters/IpFilter.php'; Rhymix\Framework\Filters\IpFilter::getCloudFlareRealIP(); } if (isset($_SERVER['REMOTE_ADDR']) && preg_match('/[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$/', $_SERVER['REMOTE_ADDR'], $matches))