Changeset 2931406 for salon-booking-system
- Timestamp:
- 06/27/2023 11:32:24 AM (22 months ago)
- Location:
- salon-booking-system/trunk
- Files:
-
- 4 edited
-
readme.txt (modified) (2 diffs)
-
salon.php (modified) (2 diffs)
-
src/SLN/Admin/Customers.php (modified) (1 diff)
-
views/admin/_customer.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
salon-booking-system/trunk/readme.txt
r2931279 r2931406 5 5 Tested up to: 6.1 6 6 Requires PHP: 7.4.8 7 Stable tag: 8.4. 77 Stable tag: 8.4.8 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 344 344 == Changelog == 345 345 346 27.06.2023 347 348 * Fix vulnerability issue 349 346 350 23.06.2023 347 351 -
salon-booking-system/trunk/salon.php
r2931279 r2931406 4 4 Plugin Name: Salon Booking Wordpress Plugin - Free Version 5 5 Description: Let your customers book you services through your website. Perfect for hairdressing salons, barber shops and beauty centers. 6 Version: 8.4. 76 Version: 8.4.8 7 7 Plugin URI: http://salonbookingsystem.com/ 8 8 Author: Salon Booking System … … 42 42 define('SLN_PLUGIN_DIR', untrailingslashit(dirname(__FILE__))); 43 43 define('SLN_PLUGIN_URL', untrailingslashit(plugins_url('', __FILE__))); 44 define('SLN_VERSION', '8.4. 6');44 define('SLN_VERSION', '8.4.8'); 45 45 define('SLN_STORE_URL', 'https://salonbookingsystem.com'); 46 46 define('SLN_AUTHOR', 'Salon Booking'); -
salon-booking-system/trunk/src/SLN/Admin/Customers.php
r2779160 r2931406 67 67 68 68 private function save_customer($user_id) { 69 check_admin_referer('sln_update_user_'.$user_id); 69 70 $customer = []; 70 71 $email = isset($_POST['sln_customer_meta']['_sln_email']) ? sanitize_email( wp_unslash($_POST['sln_customer_meta']['_sln_email']) ) : false; -
salon-booking-system/trunk/views/admin/_customer.php
r2920616 r2931406 28 28 29 29 <input type="hidden" name="id" id="id" value="<?php echo $customer->getId(); ?>"> 30 <?php wp_nonce_field('sln_update_user_'. ($customer->isEmpty() ? 0 : $customer->getId())); ?> 30 31 <div class="sln-box sln-box--main"> 31 32 <div class="row">
Note: See TracChangeset
for help on using the changeset viewer.