From 81299494c51627b32a6604e9eb32bd23c1e5afed Mon Sep 17 00:00:00 2001 From: Armanveer Gill Date: Tue, 28 Jan 2025 14:34:23 -0500 Subject: [PATCH] Fix display messages undefined warning --- common.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.inc.php b/common.inc.php index 44d4d490..84b39118 100644 --- a/common.inc.php +++ b/common.inc.php @@ -375,7 +375,7 @@ function happy($str,$type="normal") function display_messages() { /* Dump any messages in the queue */ - if(is_array($_SESSION['messages'])) { + if(is_array(get_value_from_array($_SESSION, 'messages'))) { foreach($_SESSION['messages'] as $m) echo $m; } $_SESSION['messages'] = array();