From 8af37a3f0982eb30e29c6ba0ac69115fc511cbde Mon Sep 17 00:00:00 2001 From: gravel Date: Thu, 1 Jun 2023 17:29:04 +0000 Subject: [PATCH] Fix missing import --- sites/index.php | 1 + 1 file changed, 1 insertion(+) diff --git a/sites/index.php b/sites/index.php index 6c5bd241..91bc1468 100644 --- a/sites/index.php +++ b/sites/index.php @@ -3,6 +3,7 @@ require_once "+getenv.php"; require_once "$PROJECT_ROOT/php/utils/utils.php"; require_once "$PROJECT_ROOT/php/utils/servers-rooms.php"; + require_once "$PROJECT_ROOT/php/utils/getopt.php"; // Read the server data from disk. $servers_raw = file_get_contents($ROOMS_FILE);