From c770a912f0b1369726272dfb01855533353f8fb7 Mon Sep 17 00:00:00 2001 From: ghost Date: Sun, 2 Apr 2023 18:14:42 +0300 Subject: [PATCH] fix crawl request warnings --- config/app.php.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/app.php.txt b/config/app.php.txt index 8f068c7..5a0afe1 100644 --- a/config/app.php.txt +++ b/config/app.php.txt @@ -6,7 +6,7 @@ ini_set('display_startup_errors', '1'); error_reporting(E_ALL); // Website -define('WEBSITE_DOMAIN', !empty($_SERVER['HTTP_HOST']) ? 'http://' . $_SERVER['HTTP_HOST'] : ''); +define('WEBSITE_DOMAIN', (issue($_SERVER['HTTP_HOST']) ? 'http://' . $_SERVER['HTTP_HOST'] : '')); // Database define('DB_NAME', 'database.sqlite');