v 3.8.8 release

This commit is contained in:
magepeopleteam 2023-03-21 02:12:50 +00:00
parent 4069656b0a
commit bb4bf3fc6c
3 changed files with 18 additions and 4 deletions

View File

@ -1302,10 +1302,17 @@ function mep_get_option($option, $section, $default = '') {
$options = get_option($section); $options = get_option($section);
if (isset($options[$option])) { if (isset($options[$option])) {
if(is_array($options[$option])){
return $options[$option];
}else{
return esc_html($options[$option]); return esc_html($options[$option]);
}
}
if(is_array($default)){
return $default;
}else{
return esc_html($default);
} }
return esc_html($default);
} }

View File

@ -947,4 +947,11 @@ Fixed the Date showing above the ticket type table issue.
Link Enabled in FAQ Editor Link Enabled in FAQ Editor
Label Escpaing issue fixed Label Escpaing issue fixed
Double Booking issue fixed Double Booking issue fixed
20 March 2023* 20 March 2023*
= 3.8.8=
* Update Release:
Event List Page Broken Issue Fixed
Fatal error warning issue fixed.
21 March 2023*

View File

@ -3,7 +3,7 @@
* Plugin Name: Event Manager and Tickets Selling Plugin for WooCommerce * Plugin Name: Event Manager and Tickets Selling Plugin for WooCommerce
* Plugin URI: http://mage-people.com * Plugin URI: http://mage-people.com
* Description: A Complete Event Solution for WordPress by MagePeople.. * Description: A Complete Event Solution for WordPress by MagePeople..
* Version: 3.8.7 * Version: 3.8.8
* Author: MagePeople Team * Author: MagePeople Team
* Author URI: http://www.mage-people.com/ * Author URI: http://www.mage-people.com/
* Text Domain: mage-eventpress * Text Domain: mage-eventpress