Plugin Directory

Changeset 3436301


Ignore:
Timestamp:
01/09/2026 09:06:15 PM (6 weeks ago)
Author:
Rustaurius
Message:

v2.7.9 released and tagged

Location:
restaurant-reservations
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • restaurant-reservations/tags/2.7.9/includes/WP_List_Table.BookingsTable.class.php

    r3336820 r3436301  
    886886        }
    887887
     888        $nonce        = isset( $_POST['_wpnonce'] ) ? $_POST['_wpnonce'] : '';
     889        if ( ! wp_verify_nonce( $nonce, 'bulk-' . $this->_args['plural'] ) ) {
     890            return;
     891        }
     892
    888893        if ( !current_user_can( 'manage_bookings' ) ) {
    889894            return;
  • restaurant-reservations/tags/2.7.9/readme.txt

    r3423077 r3436301  
    33Tested Up To: 6.9
    44Tags: reservation, reservations, restaurant reservations, reservation form, restaurant, restaurant booking, restaurant reservation form, restaurant booking form, restaurant booking system, reservation system, online reservations, online restaurant booking, dinner reservations, restaurant form, gutenberg reservations, gutenberg restaurant reservations, gutenberg restaurant booking, mobile reservations, responsive reservations, table reservations, open table, book table, reserve table, easy reservations, simple reservations, quick restaurant reservations, custom reservation form, custom restaurant reservations
    5 Stable tag: 2.7.8
     5Stable tag: 2.7.9
    66License: GPLv3
    77License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    303303== Changelog ==
    304304
     305= 2.7.9 (2026-01-09) =
     306- Patch for low priority/no impact CSRF vulnerability reported by Patchstack.
     307
    305308= 2.7.8 (2025-12-18) =
    306309- Fix: When updating a booking from the admin, notifications were being sent all the time instead of only when the "Send notifications" box was checked.
  • restaurant-reservations/tags/2.7.9/restaurant-reservations.php

    r3423077 r3436301  
    44 * Plugin URI: http://www.fivestarplugins.com/plugins/five-star-restaurant-reservations/
    55 * Description: Restaurant reservations made easy. Accept bookings online. Quickly confirm or reject reservations, send email notifications, set booking times and more.
    6  * Version: 2.7.8
     6 * Version: 2.7.9
    77 * Author: Five Star Plugins
    88 * Author URI: https://www.fivestarplugins.com/
     
    5959
    6060        // Common strings
    61         define( 'RTB_VERSION', '2.7.8' );
     61        define( 'RTB_VERSION', '2.7.9' );
    6262        define( 'RTB_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
    6363        define( 'RTB_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
  • restaurant-reservations/trunk/includes/WP_List_Table.BookingsTable.class.php

    r3336820 r3436301  
    886886        }
    887887
     888        $nonce        = isset( $_POST['_wpnonce'] ) ? $_POST['_wpnonce'] : '';
     889        if ( ! wp_verify_nonce( $nonce, 'bulk-' . $this->_args['plural'] ) ) {
     890            return;
     891        }
     892
    888893        if ( !current_user_can( 'manage_bookings' ) ) {
    889894            return;
  • restaurant-reservations/trunk/readme.txt

    r3423077 r3436301  
    33Tested Up To: 6.9
    44Tags: reservation, reservations, restaurant reservations, reservation form, restaurant, restaurant booking, restaurant reservation form, restaurant booking form, restaurant booking system, reservation system, online reservations, online restaurant booking, dinner reservations, restaurant form, gutenberg reservations, gutenberg restaurant reservations, gutenberg restaurant booking, mobile reservations, responsive reservations, table reservations, open table, book table, reserve table, easy reservations, simple reservations, quick restaurant reservations, custom reservation form, custom restaurant reservations
    5 Stable tag: 2.7.8
     5Stable tag: 2.7.9
    66License: GPLv3
    77License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    303303== Changelog ==
    304304
     305= 2.7.9 (2026-01-09) =
     306- Patch for low priority/no impact CSRF vulnerability reported by Patchstack.
     307
    305308= 2.7.8 (2025-12-18) =
    306309- Fix: When updating a booking from the admin, notifications were being sent all the time instead of only when the "Send notifications" box was checked.
  • restaurant-reservations/trunk/restaurant-reservations.php

    r3423077 r3436301  
    44 * Plugin URI: http://www.fivestarplugins.com/plugins/five-star-restaurant-reservations/
    55 * Description: Restaurant reservations made easy. Accept bookings online. Quickly confirm or reject reservations, send email notifications, set booking times and more.
    6  * Version: 2.7.8
     6 * Version: 2.7.9
    77 * Author: Five Star Plugins
    88 * Author URI: https://www.fivestarplugins.com/
     
    5959
    6060        // Common strings
    61         define( 'RTB_VERSION', '2.7.8' );
     61        define( 'RTB_VERSION', '2.7.9' );
    6262        define( 'RTB_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
    6363        define( 'RTB_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
Note: See TracChangeset for help on using the changeset viewer.