From 758937975c408db7f7719c695066647098ec732e Mon Sep 17 00:00:00 2001 From: magepeopleteam Date: Mon, 13 Dec 2021 12:30:12 +0000 Subject: [PATCH] file & function update --- inc/mep_functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/mep_functions.php b/inc/mep_functions.php index edc8b93..0589b7a 100755 --- a/inc/mep_functions.php +++ b/inc/mep_functions.php @@ -1662,7 +1662,7 @@ if (!function_exists('mep_event_list_price')) { if(sizeof($mep_event_ticket_type) > 0){ foreach ($mep_event_ticket_type as $ticket) { - $price_arr[] = $ticket['option_price_t']; + $price_arr[] = array_key_exists('option_price_t',$ticket) ? $ticket['option_price_t'] : null; } }