From 370cc554ad49c320821363023043f4a64d4f9e0b Mon Sep 17 00:00:00 2001 From: slawkens Date: Tue, 15 Aug 2023 22:00:57 +0200 Subject: [PATCH] Fix success & error class (bootstrap) --- system/functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/functions.php b/system/functions.php index 16984bd4..da7b0988 100644 --- a/system/functions.php +++ b/system/functions.php @@ -1411,13 +1411,13 @@ function getPlayerNameById($id) function echo_success($message) { - echo '
' . $message . '
'; + echo '
' . $message . '
'; } function echo_error($message) { global $error; - echo '
' . $message . '
'; + echo '
' . $message . '
'; $error = true; }