From ffa5c018e70df9fcfbd69ae367d99cb6b23df102 Mon Sep 17 00:00:00 2001 From: fowr <89118232+perdedora@users.noreply.github.com> Date: Fri, 21 Jul 2023 22:30:46 -0300 Subject: [PATCH] functions.php: add missing global --- inc/functions.php | 1 + 1 file changed, 1 insertion(+) diff --git a/inc/functions.php b/inc/functions.php index 5aabdef4..61b85a96 100755 --- a/inc/functions.php +++ b/inc/functions.php @@ -2259,6 +2259,7 @@ function escape_markup_modifiers($string) { } function defined_flags_accumulate($desired_flags) { + global $config; $output_flags = 0x0; foreach ($desired_flags as $flagname) { if (defined($flagname)) {