v 3.8.8 release
This commit is contained in:
parent
4069656b0a
commit
bb4bf3fc6c
|
@ -1302,10 +1302,17 @@ function mep_get_option($option, $section, $default = '') {
|
|||
$options = get_option($section);
|
||||
|
||||
if (isset($options[$option])) {
|
||||
if(is_array($options[$option])){
|
||||
return $options[$option];
|
||||
}else{
|
||||
return esc_html($options[$option]);
|
||||
}
|
||||
|
||||
}
|
||||
if(is_array($default)){
|
||||
return $default;
|
||||
}else{
|
||||
return esc_html($default);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -948,3 +948,10 @@ Link Enabled in FAQ Editor
|
|||
Label Escpaing issue fixed
|
||||
Double Booking issue fixed
|
||||
20 March 2023*
|
||||
|
||||
|
||||
= 3.8.8=
|
||||
* Update Release:
|
||||
Event List Page Broken Issue Fixed
|
||||
Fatal error warning issue fixed.
|
||||
21 March 2023*
|
|
@ -3,7 +3,7 @@
|
|||
* Plugin Name: Event Manager and Tickets Selling Plugin for WooCommerce
|
||||
* Plugin URI: http://mage-people.com
|
||||
* Description: A Complete Event Solution for WordPress by MagePeople..
|
||||
* Version: 3.8.7
|
||||
* Version: 3.8.8
|
||||
* Author: MagePeople Team
|
||||
* Author URI: http://www.mage-people.com/
|
||||
* Text Domain: mage-eventpress
|
||||
|
|
Loading…
Reference in New Issue