Changeset 3210652
- Timestamp:
- 12/19/2024 05:24:08 PM (16 months ago)
- Location:
- ticketsource-events
- Files:
-
- 6 added
- 3 edited
-
tags/3.1.0 (added)
-
tags/3.1.0/LICENSE.txt (added)
-
tags/3.1.0/README.txt (added)
-
tags/3.1.0/includes (added)
-
tags/3.1.0/includes/ticketsource-events-build.php (added)
-
tags/3.1.0/ticketsource-events.php (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/includes/ticketsource-events-build.php (modified) (1 diff)
-
trunk/ticketsource-events.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ticketsource-events/trunk/README.txt
r3206428 r3210652 1 === Sell Tickets Online -TicketSource Ticket Shop ===1 === TicketSource Ticket Shop === 2 2 Contributors: TicketSource 3 3 Tags: events, tickets, calendar, sell tickets, ticketing … … 5 5 Tested up to: 6.7 6 6 Requires PHP: 7.4 7 Stable tag: 3. 0.27 Stable tag: 3.1.0 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.txt -
ticketsource-events/trunk/includes/ticketsource-events-build.php
r1997425 r3210652 24 24 25 25 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"]; 30 30 $this->url = $defaults['src'] . '/' . $this->id . '/' . $this->target . '?eventRefNo=' . $this->eventref . '&performance_id=' . $this->performance_id; 31 31 } else { -
ticketsource-events/trunk/ticketsource-events.php
r3206428 r3210652 4 4 Plugin URI: https://www.ticketsource.co.uk/kb/additional-services-and-integrations/wordpress-plugin 5 5 Description: TicketSource Ticket Shop plugin for WordPress. 6 Version: 3. 0.26 Version: 3.1.0 7 7 Requires PHP: 7.4 8 8 Author: TicketSource … … 49 49 50 50 if ( ! defined( 'TS_VERSION' ) ) { 51 define( 'TS_VERSION', '3. 0.0');51 define( 'TS_VERSION', '3.1.0'); 52 52 } 53 53
Note: See TracChangeset
for help on using the changeset viewer.