Plugin Directory

Changeset 3210652


Ignore:
Timestamp:
12/19/2024 05:24:08 PM (16 months ago)
Author:
ticketsource
Message:

v3.1.0 with shortcode attribute escaping

Location:
ticketsource-events
Files:
6 added
3 edited

Legend:

Unmodified
Added
Removed
  • ticketsource-events/trunk/README.txt

    r3206428 r3210652  
    1 === Sell Tickets Online - TicketSource Ticket Shop ===
     1=== TicketSource Ticket Shop ===
    22Contributors: TicketSource
    33Tags: events, tickets, calendar, sell tickets, ticketing
     
    55Tested up to: 6.7
    66Requires PHP: 7.4
    7 Stable tag: 3.0.2
     7Stable tag: 3.1.0
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.txt
  • ticketsource-events/trunk/includes/ticketsource-events-build.php

    r1997425 r3210652  
    2424
    2525        if ($atts !== '') {
    26             $this->id = array_key_exists('id', $atts) ? $atts["id"] : $defaults["id"];
    27             $this->target = array_key_exists('target',$atts) ? $atts['target'] : $defaults['target'];
    28             $this->eventref = array_key_exists('eventref', $atts) ? $atts["eventref"] : $defaults["eventref"];
    29             $this->performance_id = array_key_exists('performance_id', $atts) ? $atts["performance_id"] : $defaults["performance_id"];
     26            $this->id = array_key_exists('id', $atts) ? esc_attr($atts["id"]) : $defaults["id"];
     27            $this->target = array_key_exists('target',$atts) ? esc_attr($atts['target']) : $defaults['target'];
     28            $this->eventref = array_key_exists('eventref', $atts) ? esc_attr($atts["eventref"]) : $defaults["eventref"];
     29            $this->performance_id = array_key_exists('performance_id', $atts) ? esc_attr($atts["performance_id"]) : $defaults["performance_id"];
    3030            $this->url = $defaults['src'] . '/' . $this->id . '/' . $this->target . '?eventRefNo=' . $this->eventref . '&performance_id=' . $this->performance_id;
    3131        } else {
  • ticketsource-events/trunk/ticketsource-events.php

    r3206428 r3210652  
    44Plugin URI: https://www.ticketsource.co.uk/kb/additional-services-and-integrations/wordpress-plugin
    55Description: TicketSource Ticket Shop plugin for WordPress.
    6 Version: 3.0.2
     6Version: 3.1.0
    77Requires PHP: 7.4
    88Author: TicketSource
     
    4949
    5050            if ( ! defined( 'TS_VERSION' ) ) {
    51                 define( 'TS_VERSION', '3.0.0');
     51                define( 'TS_VERSION', '3.1.0');
    5252            }
    5353
Note: See TracChangeset for help on using the changeset viewer.