Changeset 3194453
- Timestamp:
- 11/21/2024 08:23:37 PM (13 months ago)
- Location:
- registrations-for-the-events-calendar/trunk
- Files:
-
- 3 edited
-
inc/helper-functions.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
registrations-for-the-events-calendar.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
registrations-for-the-events-calendar/trunk/inc/helper-functions.php
r3150239 r3194453 98 98 99 99 if ( class_exists( 'Tribe__Events__Timezones' ) ) { 100 $start_date_utc = Tribe__Events__Timezones::to_utc( tribe_get_start_date( $event_meta['post_id'], true, Tribe__Date_Utils::DBDATETIMEFORMAT ), ' ', 'c' );101 $end_date_utc = Tribe__Events__Timezones::to_utc( tribe_get_end_date( $event_meta['post_id'], true, Tribe__Date_Utils::DBDATETIMEFORMAT ), ' ', 'c' );100 $start_date_utc = Tribe__Events__Timezones::to_utc( tribe_get_start_date( $event_meta['post_id'], true, Tribe__Date_Utils::DBDATETIMEFORMAT ), 'UTC', 'c' ); 101 $end_date_utc = Tribe__Events__Timezones::to_utc( tribe_get_end_date( $event_meta['post_id'], true, Tribe__Date_Utils::DBDATETIMEFORMAT ), 'UTC', 'c' ); 102 102 103 103 if ( $event_meta['deadline_type'] === 'start' ) { -
registrations-for-the-events-calendar/trunk/readme.txt
r3183954 r3194453 5 5 Tags: registration, The Events Calendar, RSVP, events, event registration 6 6 Requires at least: 5.6 7 Tested up to: 6. 68 Requires PHP: 7. 19 Stable tag: 2.13. 17 Tested up to: 6.7 8 Requires PHP: 7.4 9 Stable tag: 2.13.2 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 202 202 203 203 == Changelog == 204 = 2.13.2 = 205 * Fix: Fixed WordPress notice related to translations being loaded too early. 206 204 207 = 2.13.1 = 205 208 * Fix: When allowing logged-in users to register more than once, the ability to cancel the registration was disabled. -
registrations-for-the-events-calendar/trunk/registrations-for-the-events-calendar.php
r3183954 r3194453 3 3 Plugin Name: Registrations for The Events Calendar 4 4 Description: Collect and manage event registrations with a customizable form and email template. This plugin requires The Events Calendar by Modern Tribe to work. 5 Version: 2.13. 15 Version: 2.13.2 6 6 Author: Roundup WP 7 7 Author URI: roundupwp.com … … 38 38 // Plugin version. 39 39 if ( ! defined( 'RTEC_VERSION' ) ) { 40 define( 'RTEC_VERSION', '2.13. 1' );40 define( 'RTEC_VERSION', '2.13.2' ); 41 41 } 42 42 // Plugin Folder Path. … … 321 321 load_plugin_textdomain( 'registrations-for-the-events-calendar', false, basename( __DIR__ ) . '/lang' ); 322 322 } 323 add_action( ' plugins_loaded', 'rtec_text_domain' );323 add_action( 'init', 'rtec_text_domain' ); 324 324 325 325 function rtec_include_class() {
Note: See TracChangeset
for help on using the changeset viewer.