Plugin Directory


Ignore:
Timestamp:
06/27/2023 11:32:24 AM (22 months ago)
Author:
wordpresschef
Message:

Update trunk - version 8.4.8

Location:
salon-booking-system/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • salon-booking-system/trunk/readme.txt

    r2931279 r2931406  
    55Tested up to: 6.1
    66Requires PHP: 7.4.8
    7 Stable tag: 8.4.7
     7Stable tag: 8.4.8
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    344344== Changelog ==
    345345
     34627.06.2023
     347
     348* Fix vulnerability issue
     349
    34635023.06.2023
    347351
  • salon-booking-system/trunk/salon.php

    r2931279 r2931406  
    44Plugin Name: Salon Booking Wordpress Plugin - Free Version
    55Description: Let your customers book you services through your website. Perfect for hairdressing salons, barber shops and beauty centers.
    6 Version: 8.4.7
     6Version: 8.4.8
    77Plugin URI: http://salonbookingsystem.com/
    88Author: Salon Booking System
     
    4242define('SLN_PLUGIN_DIR', untrailingslashit(dirname(__FILE__)));
    4343define('SLN_PLUGIN_URL', untrailingslashit(plugins_url('', __FILE__)));
    44 define('SLN_VERSION', '8.4.6');
     44define('SLN_VERSION', '8.4.8');
    4545define('SLN_STORE_URL', 'https://salonbookingsystem.com');
    4646define('SLN_AUTHOR', 'Salon Booking');
  • salon-booking-system/trunk/src/SLN/Admin/Customers.php

    r2779160 r2931406  
    6767
    6868    private function save_customer($user_id) {
     69        check_admin_referer('sln_update_user_'.$user_id);
    6970        $customer = [];
    7071        $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  
    2828
    2929        <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())); ?>
    3031            <div class="sln-box sln-box--main">
    3132                <div class="row">
Note: See TracChangeset for help on using the changeset viewer.