Changeset 3249980
- Timestamp:
- 03/04/2025 12:04:19 AM (4 weeks ago)
- Location:
- booking-ultra-pro
- Files:
-
- 397 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
booking-ultra-pro/trunk/admin/tabs/users.php
r3139187 r3249980 89 89 { 90 90 91 $image_to_crop = $_POST['image_to_crop'];91 $image_to_crop = isset($_POST['image_to_crop']) ? sanitize_text_field($_POST['image_to_crop']) : ''; 92 92 93 93 -
booking-ultra-pro/trunk/classes/bookingultra.admin.php
r3230734 r3249980 1847 1847 if (strpos($key, 'html_') !== false) 1848 1848 { 1849 //$this->userultra_default_options[$key] = stripslashes($value);1849 $this->userultra_default_options[$key] = stripslashes($value); 1850 1850 }else{ 1851 1851 1852 //$this->userultra_default_options[$key] = esc_attr($value);1852 $this->userultra_default_options[$key] = esc_attr($value); 1853 1853 } 1854 1854 … … 1920 1920 { 1921 1921 1922 $special_with_check = array('uultra_loggedin_activated', 'private_message_system','redirect_backend_profile','redirect_backend_registration', 'redirect_registration_when_social','redirect_backend_login', 'social_media_fb_active', 'social_media_linked_active', 'social_media_yahoo', 'social_media_google', 'twitter_connect', 'instagram_connect', 'gateway_free_success_active', 'appointment_cancellation_active', 'mailchimp_active', 'mailchimp_auto_checked', 'aweber_active', 'aweber_auto_checked','aweber_auto_text','sendinblue_auto_checked'); 1922 //$special_with_check = array('uultra_loggedin_activated', 'private_message_system','redirect_backend_profile','redirect_backend_registration', 'redirect_registration_when_social','redirect_backend_login', 'social_media_fb_active', 'social_media_linked_active', 'social_media_yahoo', 'social_media_google', 'twitter_connect', 'instagram_connect', 'gateway_free_success_active', 'appointment_cancellation_active', 'mailchimp_active', 'mailchimp_auto_checked', 'aweber_active', 'aweber_auto_checked','aweber_auto_text','sendinblue_auto_checked'); 1923 $special_with_check = array('uultra_loggedin_activated', 'private_message_system','redirect_backend_profile','redirect_backend_registration', 'redirect_registration_when_social','redirect_backend_login', 'social_media_fb_active', 'social_media_linked_active', 'social_media_yahoo', 'social_media_google', 'twitter_connect', 'instagram_connect', 'mailchimp_active', 'mailchimp_auto_checked', 'aweber_active', 'aweber_auto_checked','aweber_auto_text','sendinblue_auto_checked'); 1923 1924 1924 1925 }elseif($tab=="bookingultra-gateway"){ 1925 1926 1926 $special_with_check = array('gateway_test_payment_active','gateway_paypal_active', 'gateway_bank_active', 'gateway_authorize_active', 'gateway_authorize_success_active' ,'gateway_stripe_active', 'gateway_stripe_success_active' ,'gateway_bank_success_active', 'gateway_free_success_active', 'gateway_paypal_success_active' , 'appointment_cancellation_active', 'gateway_paypal_cancel_active'); 1927 //$special_with_check = array('gateway_test_payment_active','gateway_paypal_active', 'gateway_bank_active', 'gateway_authorize_active', 'gateway_authorize_success_active' ,'gateway_stripe_active', 'gateway_stripe_success_active' ,'gateway_bank_success_active', 'gateway_free_success_active', 'gateway_paypal_success_active' , 'appointment_cancellation_active', 'gateway_paypal_cancel_active'); 1928 $special_with_check = array('gateway_test_payment_active','gateway_paypal_active', 'gateway_bank_active', 'gateway_authorize_active', 'gateway_authorize_success_active' ,'gateway_stripe_active', 'gateway_stripe_success_active' ,'gateway_bank_success_active', 'gateway_free_success_active', 'gateway_paypal_success_active'); 1927 1929 1928 1930 }elseif($tab=="mail"){ -
booking-ultra-pro/trunk/classes/bookingultra.appointment.php
r3146510 r3249980 256 256 $my_success_url = ''; 257 257 258 if($bookingultrapro->get_option('appointment_cancellation_active')==' 1')258 if($bookingultrapro->get_option('appointment_cancellation_active')=='yes') 259 259 { 260 260 $sucess_page_id = $bookingultrapro->get_option('appointment_cancellation_redir_page'); -
booking-ultra-pro/trunk/classes/bookingultra.messaging.php
r3139187 r3249980 762 762 763 763 $allow_cancellation = false; 764 if( $this->get_option('appointment_cancellation_active')== 1){$allow_cancellation = true;}764 if( $this->get_option('appointment_cancellation_active')=="yes"){$allow_cancellation = true;} 765 765 766 766 $subject_client = $this->get_option('email_new_booking_subject_client'); … … 901 901 902 902 $allow_cancellation = false; 903 if( $this->get_option('appointment_cancellation_active')== 1){$allow_cancellation = true;}903 if( $this->get_option('appointment_cancellation_active')=="yes"){$allow_cancellation = true;} 904 904 905 905 $subject_client = $this->get_option('email_new_booking_subject_client'); -
booking-ultra-pro/trunk/classes/bookingultra.user.php
r3188843 r3249980 2664 2664 } 2665 2665 2666 $my_account_url = $bookingultrapro->userpanel->get_my_account_direct_link2666 //$my_account_url = $bookingultrapro->userpanel->get_my_account_direct_link 2667 2667 2668 2668 … … 2678 2678 2679 2679 2680 <p>2680 <div style="position:relative;"> <p> 2681 2681 2682 2682 <button name="plupload-browse-button-avatar" id="uultra-confirm-avatar-cropping" class="bup-button-upload-avatar" type="link"><span><i class="fa fa-crop"></i></span> <?php esc_html_e('Crop & Save', 'booking-ultra-pro') ; ?> </button> … … 2685 2685 <div class="bup-please-wait-croppingmessage" id="bup-cropping-avatar-wait-message"> </div> 2686 2686 </p> 2687 </div> 2687 2688 2688 2689 -
booking-ultra-pro/trunk/index.php
r3230734 r3249980 5 5 Description: Booking Plugin for every service provider: dentists, medical services, hair & beauty salons, repair services, event planners, rental agencies, educational services, government agencies, school counsellors and more. This plugin allows you to manage your appointments easily. 6 6 Tested up to: 6.7.1 7 Version: 1.1.1 87 Version: 1.1.19 8 8 Author: Booking Ultra Pro 9 9 Domain Path: /languages -
booking-ultra-pro/trunk/readme.txt
r3230734 r3249980 4 4 Requires at least: 4.0 5 5 Tested up to: 6.7.1 6 Stable tag: 1.1.1 86 Stable tag: 1.1.19 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 170 170 171 171 == Changelog == 172 = 1.1.19 (04-03-2025) = 173 * Fix - Selection for optiion Redirect Cancellation link? is fixed . 174 * Fix - Code updated for secuirty patch 172 175 173 176 = 1.1.18 (28-01-2025) =
Note: See TracChangeset
for help on using the changeset viewer.