From de79ff094097dc1314bf9c7cc4955211250e3114 Mon Sep 17 00:00:00 2001 From: sbulen Date: Sat, 12 Dec 2020 21:49:55 -0800 Subject: [PATCH] Only utf8 going forward Signed by Shawn Bulen, bulens@pacbell.net --- subscriptions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subscriptions.php b/subscriptions.php index aa17214664..11bfae9a7a 100644 --- a/subscriptions.php +++ b/subscriptions.php @@ -33,7 +33,7 @@ // If there's literally nothing coming in, let's take flight! if (empty($_POST)) { - header('content-type: text/html; charset=' . (empty($modSettings['global_character_set']) ? (empty($txt['lang_character_set']) ? 'ISO-8859-1' : $txt['lang_character_set']) : $modSettings['global_character_set'])); + header('content-type: text/html; charset=UTF-8'); die($txt['paid_no_data']); }