From 89c2e84bff7c7ffe83446e4f4ed9bf61be4826ca Mon Sep 17 00:00:00 2001 From: slawkens Date: Sat, 16 Sep 2023 07:12:04 +0200 Subject: [PATCH] Fix alert class name --- system/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/functions.php b/system/functions.php index bb8b018d..37f241bc 100644 --- a/system/functions.php +++ b/system/functions.php @@ -1451,7 +1451,7 @@ function echo_success($message) function echo_error($message) { global $error; - echo '
' . $message . '
'; + echo '
' . $message . '
'; $error = true; }