Plugin Directory

Changeset 3230656


Ignore:
Timestamp:
01/28/2025 03:18:43 PM (14 months ago)
Author:
fedata
Message:

Version 2.2.3

Location:
fast-events
Files:
1 deleted
6 edited
48 copied

Legend:

Unmodified
Added
Removed
  • fast-events/tags/2.2.3/changelog.txt

    r3176877 r3230656  
    11== Changelog ==
    22
     3= 2.2.3 =
     4
     5* Fix: Store the personalized input of the tickets un-escaped.
     6
    37= 2.2.2 =
     8
    49* Fix: Selected wrong template for passe-partout.
    510* New: WordPress 6.7 compatible.
    611* New: Bump minimum WordPress version to 6.4.
    7 *
     12
    813= 2.2.1 =
     14
    915* Fix: Public Ordering API could not be used.
    1016* Fix: An event cannot refer to itself as a linked-event.
  • fast-events/tags/2.2.3/fast-events.php

    r3176877 r3230656  
    44 * Plugin URI: https://fast-events.eu/
    55 * Description: Sell online etickets wit a variety of payment options, mobile scanning, admin app, seating plans, online tracking for sports events and much more.
    6  * Version: 2.2.2
    7  * Requires at least: 6.0
     6 * Version: 2.2.3
     7 * Requires at least: 6.4
    88 * Requires PHP: 8.0
    99 * Author: FE Data
  • fast-events/tags/2.2.3/includes/class-fast-events.php

    r3176877 r3230656  
    1515 */
    1616class Fast_Events {
    17     public const FAST_EVENTS_VERSION = '2.2.2';
     17    public const FAST_EVENTS_VERSION = '2.2.3';
    1818    public const FE_ADMIN_VERSION    = 'v4.2';
    1919
  • fast-events/tags/2.2.3/includes/rest-api/class-fast-events-personalise.php

    r3036904 r3230656  
    387387        $resp                             = $wpdb->query(
    388388            'UPDATE ' . $wpdb->prefix . 'fe_event_qrcodes SET personalised_input = \'' .
    389             wp_json_encode( $personalised_input ) . '\' WHERE id = ' . $request['id']
     389            wp_json_encode( $personalised_input, JSON_UNESCAPED_UNICODE ) . '\' WHERE id = ' . $request['id']
    390390        );
    391391        if ( false === $resp ) {
     
    450450        $resp                   = $wpdb->query(
    451451            'UPDATE ' . $wpdb->prefix . 'fe_event_orders SET input_fields = \'' .
    452             wp_json_encode( $inp ) . '\' WHERE id = ' . $order->id
     452            wp_json_encode( $inp, JSON_UNESCAPED_UNICODE ) . '\' WHERE id = ' . $order->id
    453453        );
    454454        if ( false === $resp ) {
     
    534534            $resp        = $wpdb->query(
    535535                'UPDATE ' . $wpdb->prefix . 'fe_event_qrcodes SET personalised_input = \'' .
    536                 wp_json_encode( $inp ) . '\' WHERE id = ' . $ticket->id
     536                wp_json_encode( $inp, JSON_UNESCAPED_UNICODE ) . '\' WHERE id = ' . $ticket->id
    537537            );
    538538            if ( false === $resp ) {
  • fast-events/tags/2.2.3/readme.txt

    r3176877 r3230656  
    55* Requires PHP: 8.0
    66* Tested up to: 6.7
    7 * Stable tag: 2.2.2
     7* Stable tag: 2.2.3
    88* Donate link: https://docs.fast-events.eu/en/latest/misc/donate.html
    99* License: GPLv3 or later
     
    188188== Changelog ==
    189189
    190 = 2.2.2 =
     190= 2.2.3 =
    191191
    192 * Fix: Selected wrong template for passe-partout.
    193 * New: WordPress 6.7 compatible.
    194 * New: Bump minimum WordPress version to 6.4.
     192* Fix: Store the personalized input of the tickets un-escaped.
    195193
    196194
  • fast-events/trunk/changelog.txt

    r3176877 r3230656  
    11== Changelog ==
    22
     3= 2.2.3 =
     4
     5* Fix: Store the personalized input of the tickets un-escaped.
     6
    37= 2.2.2 =
     8
    49* Fix: Selected wrong template for passe-partout.
    510* New: WordPress 6.7 compatible.
    611* New: Bump minimum WordPress version to 6.4.
    7 *
     12
    813= 2.2.1 =
     14
    915* Fix: Public Ordering API could not be used.
    1016* Fix: An event cannot refer to itself as a linked-event.
  • fast-events/trunk/fast-events.php

    r3176877 r3230656  
    44 * Plugin URI: https://fast-events.eu/
    55 * Description: Sell online etickets wit a variety of payment options, mobile scanning, admin app, seating plans, online tracking for sports events and much more.
    6  * Version: 2.2.2
    7  * Requires at least: 6.0
     6 * Version: 2.2.3
     7 * Requires at least: 6.4
    88 * Requires PHP: 8.0
    99 * Author: FE Data
  • fast-events/trunk/includes/class-fast-events.php

    r3176877 r3230656  
    1515 */
    1616class Fast_Events {
    17     public const FAST_EVENTS_VERSION = '2.2.2';
     17    public const FAST_EVENTS_VERSION = '2.2.3';
    1818    public const FE_ADMIN_VERSION    = 'v4.2';
    1919
  • fast-events/trunk/includes/rest-api/class-fast-events-personalise.php

    r3036904 r3230656  
    387387        $resp                             = $wpdb->query(
    388388            'UPDATE ' . $wpdb->prefix . 'fe_event_qrcodes SET personalised_input = \'' .
    389             wp_json_encode( $personalised_input ) . '\' WHERE id = ' . $request['id']
     389            wp_json_encode( $personalised_input, JSON_UNESCAPED_UNICODE ) . '\' WHERE id = ' . $request['id']
    390390        );
    391391        if ( false === $resp ) {
     
    450450        $resp                   = $wpdb->query(
    451451            'UPDATE ' . $wpdb->prefix . 'fe_event_orders SET input_fields = \'' .
    452             wp_json_encode( $inp ) . '\' WHERE id = ' . $order->id
     452            wp_json_encode( $inp, JSON_UNESCAPED_UNICODE ) . '\' WHERE id = ' . $order->id
    453453        );
    454454        if ( false === $resp ) {
     
    534534            $resp        = $wpdb->query(
    535535                'UPDATE ' . $wpdb->prefix . 'fe_event_qrcodes SET personalised_input = \'' .
    536                 wp_json_encode( $inp ) . '\' WHERE id = ' . $ticket->id
     536                wp_json_encode( $inp, JSON_UNESCAPED_UNICODE ) . '\' WHERE id = ' . $ticket->id
    537537            );
    538538            if ( false === $resp ) {
  • fast-events/trunk/readme.txt

    r3176877 r3230656  
    55* Requires PHP: 8.0
    66* Tested up to: 6.7
    7 * Stable tag: 2.2.2
     7* Stable tag: 2.2.3
    88* Donate link: https://docs.fast-events.eu/en/latest/misc/donate.html
    99* License: GPLv3 or later
     
    188188== Changelog ==
    189189
    190 = 2.2.2 =
     190= 2.2.3 =
    191191
    192 * Fix: Selected wrong template for passe-partout.
    193 * New: WordPress 6.7 compatible.
    194 * New: Bump minimum WordPress version to 6.4.
     192* Fix: Store the personalized input of the tickets un-escaped.
    195193
    196194
Note: See TracChangeset for help on using the changeset viewer.