v 3.8.8 release
This commit is contained in:
parent
4069656b0a
commit
bb4bf3fc6c
|
@ -1302,11 +1302,18 @@ 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);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
add_action('wsa_form_bottom_mep_settings_licensing', 'mep_licensing_page', 5);
|
add_action('wsa_form_bottom_mep_settings_licensing', 'mep_licensing_page', 5);
|
||||||
|
|
|
@ -948,3 +948,10 @@ 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*
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue