From 4f1c7e40d82e52f81eba44ead501e1f01058cc4f Mon Sep 17 00:00:00 2001 From: Roman Kelesidis Date: Sat, 11 Jan 2025 12:20:15 +0300 Subject: [PATCH] fix(bb_die): HTML characters converting (#1744) --- library/includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/includes/functions.php b/library/includes/functions.php index 92a93a7ed..2300e3141 100644 --- a/library/includes/functions.php +++ b/library/includes/functions.php @@ -1357,7 +1357,7 @@ function bb_die($msg_text, $status_code = null) $template->assign_vars([ 'TPL_BB_DIE' => true, - 'MESSAGE_TEXT' => htmlCHR($msg_text) + 'MESSAGE_TEXT' => $msg_text ]); $template->set_filenames(['bb_die' => 'common.tpl']);