💦 FULL SET: Changeset/ - HD Photos!

Changeset 3194453


Ignore:
Timestamp:
11/21/2024 08:23:37 PM (13 months ago)
Author:
roundupwp
Message:
  • Fix: Fixed WordPress notice related to translations being loaded too early.
Location:
registrations-for-the-events-calendar/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • registrations-for-the-events-calendar/trunk/inc/helper-functions.php

    r3150239 r3194453  
    9898
    9999    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' );
    102102
    103103        if ( $event_meta['deadline_type'] === 'start' ) {
  • registrations-for-the-events-calendar/trunk/readme.txt

    r3183954 r3194453  
    55Tags: registration, The Events Calendar, RSVP, events, event registration
    66Requires at least: 5.6
    7 Tested up to: 6.6
    8 Requires PHP: 7.1
    9 Stable tag: 2.13.1
     7Tested up to: 6.7
     8Requires PHP: 7.4
     9Stable tag: 2.13.2
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    202202
    203203== Changelog ==
     204= 2.13.2 =
     205* Fix: Fixed WordPress notice related to translations being loaded too early.
     206
    204207= 2.13.1 =
    205208* 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  
    33Plugin Name: Registrations for The Events Calendar
    44Description: 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.1
     5Version: 2.13.2
    66Author: Roundup WP
    77Author URI: roundupwp.com
     
    3838// Plugin version.
    3939if ( ! defined( 'RTEC_VERSION' ) ) {
    40     define( 'RTEC_VERSION', '2.13.1' );
     40    define( 'RTEC_VERSION', '2.13.2' );
    4141}
    4242// Plugin Folder Path.
     
    321321    load_plugin_textdomain( 'registrations-for-the-events-calendar', false, basename( __DIR__ ) . '/lang' );
    322322}
    323 add_action( 'plugins_loaded', 'rtec_text_domain' );
     323add_action( 'init', 'rtec_text_domain' );
    324324
    325325function rtec_include_class() {
Note: See TracChangeset for help on using the changeset viewer.