Version Description
Download this release
Release Info
| Developer | bordoni |
| Plugin | |
| Version | 5.4.0.1 |
| Comparing to | |
| See all releases | |
Code changes from version 5.4.0 to 5.4.0.1
- common/src/Tribe/Admin/Pages.php +1 -1
- common/src/Tribe/Main.php +1 -1
- common/vendor/autoload.php +1 -1
- common/vendor/autoload_52.php +1 -1
- common/vendor/composer/autoload_real.php +4 -4
- common/vendor/composer/autoload_real_52.php +3 -3
- common/vendor/composer/autoload_static.php +5 -5
- event-tickets.php +1 -1
- lang/event-tickets-da_DK.mo +0 -0
- lang/event-tickets-de_DE.mo +0 -0
- lang/event-tickets-es_ES.mo +0 -0
- lang/event-tickets-fr_CA.mo +0 -0
- lang/event-tickets-fr_FR.mo +0 -0
- lang/event-tickets-it_IT.mo +0 -0
- lang/event-tickets-nl_NL.mo +0 -0
- lang/event-tickets-ro_RO.mo +0 -0
- lang/event-tickets.pot +29 -27
- readme.txt +5 -1
- src/Tribe/Main.php +1 -1
- vendor/autoload.php +1 -1
- vendor/composer/autoload_real.php +4 -4
- vendor/composer/autoload_static.php +4 -4
common/src/Tribe/Admin/Pages.php
CHANGED
|
@@ -159,7 +159,7 @@ class Pages {
|
|
| 159 |
* @return string|boolean Current page or false if not registered with this controller.
|
| 160 |
*/
|
| 161 |
public function determine_current_page() {
|
| 162 |
-
$current_screen = get_current_screen();
|
| 163 |
|
| 164 |
if ( is_null( $current_screen ) ) {
|
| 165 |
$this->current_page = tribe_get_request_var( 'page' );
|
| 159 |
* @return string|boolean Current page or false if not registered with this controller.
|
| 160 |
*/
|
| 161 |
public function determine_current_page() {
|
| 162 |
+
$current_screen = function_exists( 'get_current_screen' ) ? get_current_screen() : null;
|
| 163 |
|
| 164 |
if ( is_null( $current_screen ) ) {
|
| 165 |
$this->current_page = tribe_get_request_var( 'page' );
|
common/src/Tribe/Main.php
CHANGED
|
@@ -20,7 +20,7 @@ class Tribe__Main {
|
|
| 20 |
const OPTIONNAME = 'tribe_events_calendar_options';
|
| 21 |
const OPTIONNAMENETWORK = 'tribe_events_calendar_network_options';
|
| 22 |
|
| 23 |
-
const VERSION = '4.15.0';
|
| 24 |
const FEED_URL = 'https://theeventscalendar.com/feed/';
|
| 25 |
|
| 26 |
protected $plugin_context;
|
| 20 |
const OPTIONNAME = 'tribe_events_calendar_options';
|
| 21 |
const OPTIONNAMENETWORK = 'tribe_events_calendar_network_options';
|
| 22 |
|
| 23 |
+
const VERSION = '4.15.0.1';
|
| 24 |
const FEED_URL = 'https://theeventscalendar.com/feed/';
|
| 25 |
|
| 26 |
protected $plugin_context;
|
common/vendor/autoload.php
CHANGED
|
@@ -4,4 +4,4 @@
|
|
| 4 |
|
| 5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
| 6 |
|
| 7 |
-
return
|
| 4 |
|
| 5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
| 6 |
|
| 7 |
+
return ComposerAutoloaderInit78b01256e32a6fb33d625f6d51c85105::getLoader();
|
common/vendor/autoload_52.php
CHANGED
|
@@ -4,4 +4,4 @@
|
|
| 4 |
|
| 5 |
require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
|
| 6 |
|
| 7 |
-
return
|
| 4 |
|
| 5 |
require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
|
| 6 |
|
| 7 |
+
return ComposerAutoloaderInit62cc26a3eb7f6ed4034448d86b0f07f3::getLoader();
|
common/vendor/composer/autoload_real.php
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
|
| 3 |
// autoload_real.php @generated by Composer
|
| 4 |
|
| 5 |
-
class
|
| 6 |
{
|
| 7 |
private static $loader;
|
| 8 |
|
|
@@ -19,15 +19,15 @@ class ComposerAutoloaderInit1c4b0569c33e8c1a6aedbf7bff375a87
|
|
| 19 |
return self::$loader;
|
| 20 |
}
|
| 21 |
|
| 22 |
-
spl_autoload_register(array('
|
| 23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
| 24 |
-
spl_autoload_unregister(array('
|
| 25 |
|
| 26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
| 27 |
if ($useStaticLoader) {
|
| 28 |
require_once __DIR__ . '/autoload_static.php';
|
| 29 |
|
| 30 |
-
call_user_func(\Composer\Autoload\
|
| 31 |
} else {
|
| 32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
| 33 |
foreach ($map as $namespace => $path) {
|
| 2 |
|
| 3 |
// autoload_real.php @generated by Composer
|
| 4 |
|
| 5 |
+
class ComposerAutoloaderInit78b01256e32a6fb33d625f6d51c85105
|
| 6 |
{
|
| 7 |
private static $loader;
|
| 8 |
|
| 19 |
return self::$loader;
|
| 20 |
}
|
| 21 |
|
| 22 |
+
spl_autoload_register(array('ComposerAutoloaderInit78b01256e32a6fb33d625f6d51c85105', 'loadClassLoader'), true, true);
|
| 23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
| 24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit78b01256e32a6fb33d625f6d51c85105', 'loadClassLoader'));
|
| 25 |
|
| 26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
| 27 |
if ($useStaticLoader) {
|
| 28 |
require_once __DIR__ . '/autoload_static.php';
|
| 29 |
|
| 30 |
+
call_user_func(\Composer\Autoload\ComposerStaticInit78b01256e32a6fb33d625f6d51c85105::getInitializer($loader));
|
| 31 |
} else {
|
| 32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
| 33 |
foreach ($map as $namespace => $path) {
|
common/vendor/composer/autoload_real_52.php
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
|
| 3 |
// autoload_real_52.php generated by xrstf/composer-php52
|
| 4 |
|
| 5 |
-
class
|
| 6 |
private static $loader;
|
| 7 |
|
| 8 |
public static function loadClassLoader($class) {
|
|
@@ -19,9 +19,9 @@ class ComposerAutoloaderInite093d31754094ab6e91cf2099e3165e1 {
|
|
| 19 |
return self::$loader;
|
| 20 |
}
|
| 21 |
|
| 22 |
-
spl_autoload_register(array('
|
| 23 |
self::$loader = $loader = new xrstf_Composer52_ClassLoader();
|
| 24 |
-
spl_autoload_unregister(array('
|
| 25 |
|
| 26 |
$vendorDir = dirname(dirname(__FILE__));
|
| 27 |
$baseDir = dirname($vendorDir);
|
| 2 |
|
| 3 |
// autoload_real_52.php generated by xrstf/composer-php52
|
| 4 |
|
| 5 |
+
class ComposerAutoloaderInit62cc26a3eb7f6ed4034448d86b0f07f3 {
|
| 6 |
private static $loader;
|
| 7 |
|
| 8 |
public static function loadClassLoader($class) {
|
| 19 |
return self::$loader;
|
| 20 |
}
|
| 21 |
|
| 22 |
+
spl_autoload_register(array('ComposerAutoloaderInit62cc26a3eb7f6ed4034448d86b0f07f3', 'loadClassLoader'), true /*, true */);
|
| 23 |
self::$loader = $loader = new xrstf_Composer52_ClassLoader();
|
| 24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit62cc26a3eb7f6ed4034448d86b0f07f3', 'loadClassLoader'));
|
| 25 |
|
| 26 |
$vendorDir = dirname(dirname(__FILE__));
|
| 27 |
$baseDir = dirname($vendorDir);
|
common/vendor/composer/autoload_static.php
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
|
| 5 |
namespace Composer\Autoload;
|
| 6 |
|
| 7 |
-
class
|
| 8 |
{
|
| 9 |
public static $prefixLengthsPsr4 = array (
|
| 10 |
'T' =>
|
|
@@ -269,10 +269,10 @@ class ComposerStaticInit1c4b0569c33e8c1a6aedbf7bff375a87
|
|
| 269 |
public static function getInitializer(ClassLoader $loader)
|
| 270 |
{
|
| 271 |
return \Closure::bind(function () use ($loader) {
|
| 272 |
-
$loader->prefixLengthsPsr4 =
|
| 273 |
-
$loader->prefixDirsPsr4 =
|
| 274 |
-
$loader->prefixesPsr0 =
|
| 275 |
-
$loader->classMap =
|
| 276 |
|
| 277 |
}, null, ClassLoader::class);
|
| 278 |
}
|
| 4 |
|
| 5 |
namespace Composer\Autoload;
|
| 6 |
|
| 7 |
+
class ComposerStaticInit78b01256e32a6fb33d625f6d51c85105
|
| 8 |
{
|
| 9 |
public static $prefixLengthsPsr4 = array (
|
| 10 |
'T' =>
|
| 269 |
public static function getInitializer(ClassLoader $loader)
|
| 270 |
{
|
| 271 |
return \Closure::bind(function () use ($loader) {
|
| 272 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInit78b01256e32a6fb33d625f6d51c85105::$prefixLengthsPsr4;
|
| 273 |
+
$loader->prefixDirsPsr4 = ComposerStaticInit78b01256e32a6fb33d625f6d51c85105::$prefixDirsPsr4;
|
| 274 |
+
$loader->prefixesPsr0 = ComposerStaticInit78b01256e32a6fb33d625f6d51c85105::$prefixesPsr0;
|
| 275 |
+
$loader->classMap = ComposerStaticInit78b01256e32a6fb33d625f6d51c85105::$classMap;
|
| 276 |
|
| 277 |
}, null, ClassLoader::class);
|
| 278 |
}
|
event-tickets.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
Plugin Name: Event Tickets
|
| 4 |
Plugin URI: https://evnt.is/1acb
|
| 5 |
Description: Event Tickets allows you to sell basic tickets and collect RSVPs from any post, page, or event.
|
| 6 |
-
Version: 5.4.0
|
| 7 |
Author: The Events Calendar
|
| 8 |
Author URI: https://evnt.is/1aor
|
| 9 |
License: GPLv2 or later
|
| 3 |
Plugin Name: Event Tickets
|
| 4 |
Plugin URI: https://evnt.is/1acb
|
| 5 |
Description: Event Tickets allows you to sell basic tickets and collect RSVPs from any post, page, or event.
|
| 6 |
+
Version: 5.4.0.1
|
| 7 |
Author: The Events Calendar
|
| 8 |
Author URI: https://evnt.is/1aor
|
| 9 |
License: GPLv2 or later
|
lang/event-tickets-da_DK.mo
CHANGED
|
Binary file
|
lang/event-tickets-de_DE.mo
CHANGED
|
Binary file
|
lang/event-tickets-es_ES.mo
CHANGED
|
Binary file
|
lang/event-tickets-fr_CA.mo
CHANGED
|
Binary file
|
lang/event-tickets-fr_FR.mo
CHANGED
|
Binary file
|
lang/event-tickets-it_IT.mo
CHANGED
|
Binary file
|
lang/event-tickets-nl_NL.mo
CHANGED
|
Binary file
|
lang/event-tickets-ro_RO.mo
CHANGED
|
Binary file
|
lang/event-tickets.pot
CHANGED
|
@@ -2,19 +2,19 @@
|
|
| 2 |
# This file is distributed under the same license as the Event Tickets package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
-
"Project-Id-Version: Event Tickets 5.4.0\n"
|
| 6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-tickets\n"
|
| 7 |
-
"POT-Creation-Date: 2022-05-
|
| 8 |
"MIME-Version: 1.0\n"
|
| 9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 10 |
"Content-Transfer-Encoding: 8bit\n"
|
| 11 |
-
"PO-Revision-Date: 2022-05-
|
| 12 |
"Last-Translator: \n"
|
| 13 |
"Language-Team: \n"
|
| 14 |
|
| 15 |
-
#. #-#-#-#-# event-tickets.pot (Event Tickets 5.4.0) #-#-#-#-#
|
| 16 |
#. Plugin Name of the plugin/theme
|
| 17 |
-
#: event-tickets.php:61 src/Tribe/Admin/Notices.php:92 src/Tribe/Main.php:
|
| 18 |
#: src/Tribe/Privacy.php:59 src/admin-views/admin-welcome-message.php:60
|
| 19 |
msgid "Event Tickets"
|
| 20 |
msgstr ""
|
|
@@ -5048,7 +5048,7 @@ msgid "Payments"
|
|
| 5048 |
msgstr ""
|
| 5049 |
|
| 5050 |
#: src/Tickets/Commerce/Payments_Tab.php:300 src/Tribe/Admin/Notices.php:214
|
| 5051 |
-
#: src/Tribe/Main.php:
|
| 5052 |
#: src/admin-views/tribe-commerce-settings.php:4
|
| 5053 |
msgid "Event Tickets Plus"
|
| 5054 |
msgstr ""
|
|
@@ -5564,7 +5564,7 @@ msgctxt "total complete tooltip"
|
|
| 5564 |
msgid "Includes ticketed attendees with orders marked Completed."
|
| 5565 |
msgstr ""
|
| 5566 |
|
| 5567 |
-
#: src/Tribe/Admin/Home/Service_Provider.php:80 src/Tribe/Main.php:
|
| 5568 |
msgid "Welcome to Event Tickets!"
|
| 5569 |
msgstr ""
|
| 5570 |
|
|
@@ -6415,104 +6415,106 @@ msgctxt "provider_plugin_name"
|
|
| 6415 |
msgid "Tickets"
|
| 6416 |
msgstr ""
|
| 6417 |
|
| 6418 |
-
|
|
|
|
|
|
|
| 6419 |
msgid ""
|
| 6420 |
"When The Events Calendar and Event Tickets are both activated, The Events "
|
| 6421 |
"Calendar must be running version %1$s or greater. Please %2$supdate now.%3$s"
|
| 6422 |
msgstr ""
|
| 6423 |
|
| 6424 |
-
#: src/Tribe/Main.php:
|
| 6425 |
msgid ""
|
| 6426 |
"Sorry, Event Tickets requires WordPress %s or higher. Please upgrade your "
|
| 6427 |
"WordPress install."
|
| 6428 |
msgstr ""
|
| 6429 |
|
| 6430 |
-
#: src/Tribe/Main.php:
|
| 6431 |
msgid ""
|
| 6432 |
"Sorry, Event Tickets requires PHP %s or higher. Talk to your Web host about "
|
| 6433 |
"moving you to a newer version of PHP."
|
| 6434 |
msgstr ""
|
| 6435 |
|
| 6436 |
-
#: src/Tribe/Main.php:
|
| 6437 |
msgid "Support for Event Tickets"
|
| 6438 |
msgstr ""
|
| 6439 |
|
| 6440 |
-
#: src/Tribe/Main.php:
|
| 6441 |
msgid "Settings overview"
|
| 6442 |
msgstr ""
|
| 6443 |
|
| 6444 |
-
#: src/Tribe/Main.php:
|
| 6445 |
msgid "Features overview"
|
| 6446 |
msgstr ""
|
| 6447 |
|
| 6448 |
-
#: src/Tribe/Main.php:
|
| 6449 |
msgid "Troubleshooting common problems"
|
| 6450 |
msgstr ""
|
| 6451 |
|
| 6452 |
-
#: src/Tribe/Main.php:
|
| 6453 |
msgid "Customizing Event Tickets"
|
| 6454 |
msgstr ""
|
| 6455 |
|
| 6456 |
-
#: src/Tribe/Main.php:
|
| 6457 |
msgid "New User Primer"
|
| 6458 |
msgstr ""
|
| 6459 |
|
| 6460 |
-
#: src/Tribe/Main.php:
|
| 6461 |
msgctxt "help feature box section"
|
| 6462 |
msgid ""
|
| 6463 |
"We are committed to helping you sell %1$s for your event. Check out our "
|
| 6464 |
"handy %2$s to get started."
|
| 6465 |
msgstr ""
|
| 6466 |
|
| 6467 |
-
#: src/Tribe/Main.php:
|
| 6468 |
msgid "open-source forum on WordPress.org"
|
| 6469 |
msgstr ""
|
| 6470 |
|
| 6471 |
-
#: src/Tribe/Main.php:
|
| 6472 |
msgid ""
|
| 6473 |
"If you have tried the above steps and are still having trouble, you can post "
|
| 6474 |
"a new thread to our %s. Our support staff monitors these forums once a week "
|
| 6475 |
"and would be happy to assist you there."
|
| 6476 |
msgstr ""
|
| 6477 |
|
| 6478 |
-
#: src/Tribe/Main.php:
|
| 6479 |
msgid "premium support on our website"
|
| 6480 |
msgstr ""
|
| 6481 |
|
| 6482 |
-
#: src/Tribe/Main.php:
|
| 6483 |
msgid ""
|
| 6484 |
"Looking for more immediate support? We offer %1$s with the purchase of any "
|
| 6485 |
"of our premium plugins (like %2$s). Pick up a license and you can post there "
|
| 6486 |
"directly and expect a response within 24-48 hours during weekdays."
|
| 6487 |
msgstr ""
|
| 6488 |
|
| 6489 |
-
#: src/Tribe/Main.php:
|
| 6490 |
msgid "post a thread"
|
| 6491 |
msgstr ""
|
| 6492 |
|
| 6493 |
-
#: src/Tribe/Main.php:
|
| 6494 |
msgid ""
|
| 6495 |
"Already have Event Tickets Plus? You can %s in our premium support forums. "
|
| 6496 |
"Our support team monitors the forums and will respond to your thread within "
|
| 6497 |
"24-48 hours (during the week)."
|
| 6498 |
msgstr ""
|
| 6499 |
|
| 6500 |
-
#: src/Tribe/Main.php:
|
| 6501 |
msgid ""
|
| 6502 |
"If you have a valid license for one of our paid plugins, you can %s in our "
|
| 6503 |
"premium support forums. Our support team monitors the forums and will "
|
| 6504 |
"respond to your thread within 24-48 hours (during the week)."
|
| 6505 |
msgstr ""
|
| 6506 |
|
| 6507 |
-
#: src/Tribe/Main.php:
|
| 6508 |
msgid "Event Tickets - Legacy"
|
| 6509 |
msgstr ""
|
| 6510 |
|
| 6511 |
-
#: src/Tribe/Main.php:
|
| 6512 |
msgid "Buy"
|
| 6513 |
msgstr ""
|
| 6514 |
|
| 6515 |
-
#: src/Tribe/Main.php:
|
| 6516 |
msgid ""
|
| 6517 |
"When Event Tickets and Event Tickets Plus are both activated, Event Tickets "
|
| 6518 |
"Plus must be running version %1$s or greater. Please %2$smanually update now"
|
| 2 |
# This file is distributed under the same license as the Event Tickets package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
+
"Project-Id-Version: Event Tickets 5.4.0.1\n"
|
| 6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-tickets\n"
|
| 7 |
+
"POT-Creation-Date: 2022-05-23 14:31:33+00:00\n"
|
| 8 |
"MIME-Version: 1.0\n"
|
| 9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 10 |
"Content-Transfer-Encoding: 8bit\n"
|
| 11 |
+
"PO-Revision-Date: 2022-05-23 14:31\n"
|
| 12 |
"Last-Translator: \n"
|
| 13 |
"Language-Team: \n"
|
| 14 |
|
| 15 |
+
#. #-#-#-#-# event-tickets.pot (Event Tickets 5.4.0.1) #-#-#-#-#
|
| 16 |
#. Plugin Name of the plugin/theme
|
| 17 |
+
#: event-tickets.php:61 src/Tribe/Admin/Notices.php:92 src/Tribe/Main.php:701
|
| 18 |
#: src/Tribe/Privacy.php:59 src/admin-views/admin-welcome-message.php:60
|
| 19 |
msgid "Event Tickets"
|
| 20 |
msgstr ""
|
| 5048 |
msgstr ""
|
| 5049 |
|
| 5050 |
#: src/Tickets/Commerce/Payments_Tab.php:300 src/Tribe/Admin/Notices.php:214
|
| 5051 |
+
#: src/Tribe/Main.php:676 src/admin-views/admin-welcome-message.php:58
|
| 5052 |
#: src/admin-views/tribe-commerce-settings.php:4
|
| 5053 |
msgid "Event Tickets Plus"
|
| 5054 |
msgstr ""
|
| 5564 |
msgid "Includes ticketed attendees with orders marked Completed."
|
| 5565 |
msgstr ""
|
| 5566 |
|
| 5567 |
+
#: src/Tribe/Admin/Home/Service_Provider.php:80 src/Tribe/Main.php:845
|
| 5568 |
msgid "Welcome to Event Tickets!"
|
| 5569 |
msgstr ""
|
| 5570 |
|
| 6415 |
msgid "Tickets"
|
| 6416 |
msgstr ""
|
| 6417 |
|
| 6418 |
+
#. Translators: %1$s is the min required version of The Events Calendar. %2$s
|
| 6419 |
+
#. Is the update link opening `<a>`. %3$s Is the update link closing `</a>`.
|
| 6420 |
+
#: src/Tribe/Main.php:439
|
| 6421 |
msgid ""
|
| 6422 |
"When The Events Calendar and Event Tickets are both activated, The Events "
|
| 6423 |
"Calendar must be running version %1$s or greater. Please %2$supdate now.%3$s"
|
| 6424 |
msgstr ""
|
| 6425 |
|
| 6426 |
+
#: src/Tribe/Main.php:502
|
| 6427 |
msgid ""
|
| 6428 |
"Sorry, Event Tickets requires WordPress %s or higher. Please upgrade your "
|
| 6429 |
"WordPress install."
|
| 6430 |
msgstr ""
|
| 6431 |
|
| 6432 |
+
#: src/Tribe/Main.php:506
|
| 6433 |
msgid ""
|
| 6434 |
"Sorry, Event Tickets requires PHP %s or higher. Talk to your Web host about "
|
| 6435 |
"moving you to a newer version of PHP."
|
| 6436 |
msgstr ""
|
| 6437 |
|
| 6438 |
+
#: src/Tribe/Main.php:631
|
| 6439 |
msgid "Support for Event Tickets"
|
| 6440 |
msgstr ""
|
| 6441 |
|
| 6442 |
+
#: src/Tribe/Main.php:633
|
| 6443 |
msgid "Settings overview"
|
| 6444 |
msgstr ""
|
| 6445 |
|
| 6446 |
+
#: src/Tribe/Main.php:634
|
| 6447 |
msgid "Features overview"
|
| 6448 |
msgstr ""
|
| 6449 |
|
| 6450 |
+
#: src/Tribe/Main.php:635
|
| 6451 |
msgid "Troubleshooting common problems"
|
| 6452 |
msgstr ""
|
| 6453 |
|
| 6454 |
+
#: src/Tribe/Main.php:636
|
| 6455 |
msgid "Customizing Event Tickets"
|
| 6456 |
msgstr ""
|
| 6457 |
|
| 6458 |
+
#: src/Tribe/Main.php:653
|
| 6459 |
msgid "New User Primer"
|
| 6460 |
msgstr ""
|
| 6461 |
|
| 6462 |
+
#: src/Tribe/Main.php:655
|
| 6463 |
msgctxt "help feature box section"
|
| 6464 |
msgid ""
|
| 6465 |
"We are committed to helping you sell %1$s for your event. Check out our "
|
| 6466 |
"handy %2$s to get started."
|
| 6467 |
msgstr ""
|
| 6468 |
|
| 6469 |
+
#: src/Tribe/Main.php:672
|
| 6470 |
msgid "open-source forum on WordPress.org"
|
| 6471 |
msgstr ""
|
| 6472 |
|
| 6473 |
+
#: src/Tribe/Main.php:673
|
| 6474 |
msgid ""
|
| 6475 |
"If you have tried the above steps and are still having trouble, you can post "
|
| 6476 |
"a new thread to our %s. Our support staff monitors these forums once a week "
|
| 6477 |
"and would be happy to assist you there."
|
| 6478 |
msgstr ""
|
| 6479 |
|
| 6480 |
+
#: src/Tribe/Main.php:675
|
| 6481 |
msgid "premium support on our website"
|
| 6482 |
msgstr ""
|
| 6483 |
|
| 6484 |
+
#: src/Tribe/Main.php:677
|
| 6485 |
msgid ""
|
| 6486 |
"Looking for more immediate support? We offer %1$s with the purchase of any "
|
| 6487 |
"of our premium plugins (like %2$s). Pick up a license and you can post there "
|
| 6488 |
"directly and expect a response within 24-48 hours during weekdays."
|
| 6489 |
msgstr ""
|
| 6490 |
|
| 6491 |
+
#: src/Tribe/Main.php:679 src/Tribe/Main.php:684
|
| 6492 |
msgid "post a thread"
|
| 6493 |
msgstr ""
|
| 6494 |
|
| 6495 |
+
#: src/Tribe/Main.php:680
|
| 6496 |
msgid ""
|
| 6497 |
"Already have Event Tickets Plus? You can %s in our premium support forums. "
|
| 6498 |
"Our support team monitors the forums and will respond to your thread within "
|
| 6499 |
"24-48 hours (during the week)."
|
| 6500 |
msgstr ""
|
| 6501 |
|
| 6502 |
+
#: src/Tribe/Main.php:685
|
| 6503 |
msgid ""
|
| 6504 |
"If you have a valid license for one of our paid plugins, you can %s in our "
|
| 6505 |
"premium support forums. Our support team monitors the forums and will "
|
| 6506 |
"respond to your thread within 24-48 hours (during the week)."
|
| 6507 |
msgstr ""
|
| 6508 |
|
| 6509 |
+
#: src/Tribe/Main.php:707
|
| 6510 |
msgid "Event Tickets - Legacy"
|
| 6511 |
msgstr ""
|
| 6512 |
|
| 6513 |
+
#: src/Tribe/Main.php:1005
|
| 6514 |
msgid "Buy"
|
| 6515 |
msgstr ""
|
| 6516 |
|
| 6517 |
+
#: src/Tribe/Main.php:1084
|
| 6518 |
msgid ""
|
| 6519 |
"When Event Tickets and Event Tickets Plus are both activated, Event Tickets "
|
| 6520 |
"Plus must be running version %1$s or greater. Please %2$smanually update now"
|
readme.txt
CHANGED
|
@@ -4,7 +4,7 @@ Contributors: theeventscalendar, brianjessee, camwynsp, aguseo, bordoni, borkweb
|
|
| 4 |
Tags: tickets, registration, event registration, RSVP, ticket sales, attendee management
|
| 5 |
Requires at least: 5.6
|
| 6 |
Tested up to: 5.9.3
|
| 7 |
-
Stable tag: 5.4.0
|
| 8 |
Requires PHP: 7.1
|
| 9 |
License: GPLv2 or later
|
| 10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
|
@@ -188,6 +188,10 @@ Check out our extensive [knowledgebase](https://evnt.is/18wm) for articles on us
|
|
| 188 |
|
| 189 |
== Changelog ==
|
| 190 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 191 |
= [5.4.0] 2022-05-19 =
|
| 192 |
|
| 193 |
* Version - Event Tickets 5.4.0 is only compatible with The Events Calendar 5.15.0 and higher
|
| 4 |
Tags: tickets, registration, event registration, RSVP, ticket sales, attendee management
|
| 5 |
Requires at least: 5.6
|
| 6 |
Tested up to: 5.9.3
|
| 7 |
+
Stable tag: 5.4.0.1
|
| 8 |
Requires PHP: 7.1
|
| 9 |
License: GPLv2 or later
|
| 10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 188 |
|
| 189 |
== Changelog ==
|
| 190 |
|
| 191 |
+
= [5.4.0.1] 2022-05-23 =
|
| 192 |
+
|
| 193 |
+
* Fix - Check if function exists for `get_current_screen` to avoid a fatal if not.
|
| 194 |
+
|
| 195 |
= [5.4.0] 2022-05-19 =
|
| 196 |
|
| 197 |
* Version - Event Tickets 5.4.0 is only compatible with The Events Calendar 5.15.0 and higher
|
src/Tribe/Main.php
CHANGED
|
@@ -8,7 +8,7 @@ class Tribe__Tickets__Main {
|
|
| 8 |
/**
|
| 9 |
* Current version of this plugin
|
| 10 |
*/
|
| 11 |
-
const VERSION = '5.4.0';
|
| 12 |
|
| 13 |
/**
|
| 14 |
* Used to store the version history.
|
| 8 |
/**
|
| 9 |
* Current version of this plugin
|
| 10 |
*/
|
| 11 |
+
const VERSION = '5.4.0.1';
|
| 12 |
|
| 13 |
/**
|
| 14 |
* Used to store the version history.
|
vendor/autoload.php
CHANGED
|
@@ -4,4 +4,4 @@
|
|
| 4 |
|
| 5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
| 6 |
|
| 7 |
-
return
|
| 4 |
|
| 5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
| 6 |
|
| 7 |
+
return ComposerAutoloaderInit655b524cc9aabb8f5d78d26911fcaedd::getLoader();
|
vendor/composer/autoload_real.php
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
|
| 3 |
// autoload_real.php @generated by Composer
|
| 4 |
|
| 5 |
-
class
|
| 6 |
{
|
| 7 |
private static $loader;
|
| 8 |
|
|
@@ -19,15 +19,15 @@ class ComposerAutoloaderInitf3a3dd49b3156dfe1574b15c8819d1dd
|
|
| 19 |
return self::$loader;
|
| 20 |
}
|
| 21 |
|
| 22 |
-
spl_autoload_register(array('
|
| 23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
| 24 |
-
spl_autoload_unregister(array('
|
| 25 |
|
| 26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
| 27 |
if ($useStaticLoader) {
|
| 28 |
require_once __DIR__ . '/autoload_static.php';
|
| 29 |
|
| 30 |
-
call_user_func(\Composer\Autoload\
|
| 31 |
} else {
|
| 32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
| 33 |
foreach ($map as $namespace => $path) {
|
| 2 |
|
| 3 |
// autoload_real.php @generated by Composer
|
| 4 |
|
| 5 |
+
class ComposerAutoloaderInit655b524cc9aabb8f5d78d26911fcaedd
|
| 6 |
{
|
| 7 |
private static $loader;
|
| 8 |
|
| 19 |
return self::$loader;
|
| 20 |
}
|
| 21 |
|
| 22 |
+
spl_autoload_register(array('ComposerAutoloaderInit655b524cc9aabb8f5d78d26911fcaedd', 'loadClassLoader'), true, true);
|
| 23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
| 24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit655b524cc9aabb8f5d78d26911fcaedd', 'loadClassLoader'));
|
| 25 |
|
| 26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
| 27 |
if ($useStaticLoader) {
|
| 28 |
require_once __DIR__ . '/autoload_static.php';
|
| 29 |
|
| 30 |
+
call_user_func(\Composer\Autoload\ComposerStaticInit655b524cc9aabb8f5d78d26911fcaedd::getInitializer($loader));
|
| 31 |
} else {
|
| 32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
| 33 |
foreach ($map as $namespace => $path) {
|
vendor/composer/autoload_static.php
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
|
| 5 |
namespace Composer\Autoload;
|
| 6 |
|
| 7 |
-
class
|
| 8 |
{
|
| 9 |
public static $prefixLengthsPsr4 = array (
|
| 10 |
'T' =>
|
|
@@ -206,9 +206,9 @@ class ComposerStaticInitf3a3dd49b3156dfe1574b15c8819d1dd
|
|
| 206 |
public static function getInitializer(ClassLoader $loader)
|
| 207 |
{
|
| 208 |
return \Closure::bind(function () use ($loader) {
|
| 209 |
-
$loader->prefixLengthsPsr4 =
|
| 210 |
-
$loader->prefixDirsPsr4 =
|
| 211 |
-
$loader->classMap =
|
| 212 |
|
| 213 |
}, null, ClassLoader::class);
|
| 214 |
}
|
| 4 |
|
| 5 |
namespace Composer\Autoload;
|
| 6 |
|
| 7 |
+
class ComposerStaticInit655b524cc9aabb8f5d78d26911fcaedd
|
| 8 |
{
|
| 9 |
public static $prefixLengthsPsr4 = array (
|
| 10 |
'T' =>
|
| 206 |
public static function getInitializer(ClassLoader $loader)
|
| 207 |
{
|
| 208 |
return \Closure::bind(function () use ($loader) {
|
| 209 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInit655b524cc9aabb8f5d78d26911fcaedd::$prefixLengthsPsr4;
|
| 210 |
+
$loader->prefixDirsPsr4 = ComposerStaticInit655b524cc9aabb8f5d78d26911fcaedd::$prefixDirsPsr4;
|
| 211 |
+
$loader->classMap = ComposerStaticInit655b524cc9aabb8f5d78d26911fcaedd::$classMap;
|
| 212 |
|
| 213 |
}, null, ClassLoader::class);
|
| 214 |
}
|
