From d6270a7e32f3141433abae957742e1ec1b5095c3 Mon Sep 17 00:00:00 2001 From: slawkens Date: Tue, 19 Nov 2024 15:33:12 +0100 Subject: [PATCH] Fix duplicate function declaration --- system/migrations/38.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/migrations/38.php b/system/migrations/38.php index f42a4d53..c8f6326c 100644 --- a/system/migrations/38.php +++ b/system/migrations/38.php @@ -6,7 +6,7 @@ // 2023-11-11 // execute highscores_ids_hidden once again, cause of settings $up = function () { - require __DIR__ . '/20.php'; + require_once __DIR__ . '/20.php'; updateHighscoresIdsHidden(); };