Plugin Directory

Changeset 3420004


Ignore:
Timestamp:
12/15/2025 11:05:18 AM (4 months ago)
Author:
netoxygen
Message:

Preparing for 2.97.2 release

Location:
ticketack/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • ticketack/trunk/app/helpers/sync_helper.class.php

    r3388937 r3420004  
    4848                        continue;
    4949                    }
    50                     $tr_post_id = static::create_post($e, $lang, /*$save_attachments*/true, /*$original_post_id*/$def_post_id);
     50                    $tr_post_id = static::create_post($e, $lang, $save_attachments, /*$original_post_id*/$def_post_id);
    5151                    if (!is_null($tr_post_id)) {
    5252                        static::link_translations($def_post_id, $tr_post_id, $lang);
  • ticketack/trunk/app/ticketack/models/event.class.php

    r3046404 r3420004  
    8686    public function __construct(array &$properties = [])
    8787    {
    88         if (array_key_exists('created_at', $properties)) {
     88        if (array_key_exists('created_at', $properties) && !empty($properties['created_at'])) {
    8989            $this->created_at = tkt_iso8601_to_datetime($properties['created_at']);
    9090            unset($properties['created_at']);
    9191        }
    92         if (array_key_exists('updated_at', $properties)) {
     92        if (array_key_exists('updated_at', $properties) && !empty($properties['updated_at'])) {
    9393            $this->updated_at = tkt_iso8601_to_datetime($properties['updated_at']);
    9494            unset($properties['updated_at']);
  • ticketack/trunk/app/ticketack/models/screening.class.php

    r3388937 r3420004  
    229229    public function __construct(array &$properties = [])
    230230    {
    231         if (array_key_exists('start_at', $properties)) {
     231        if (array_key_exists('start_at', $properties) && !empty($properties['start_at'])) {
    232232            $this->start_at = tkt_iso8601_to_datetime($properties['start_at']);
    233233            unset($properties['start_at']);
    234234        }
    235         if (array_key_exists('stop_at', $properties)) {
     235        if (array_key_exists('stop_at', $properties) && !empty($properties['stop_at'])) {
    236236            $this->stop_at = tkt_iso8601_to_datetime($properties['stop_at']);
    237237            unset($properties['stop_at']);
  • ticketack/trunk/readme.txt

    r3412064 r3420004  
    22Tags: ticketack
    33Requires at least: 5.9
    4 Tested up to: 6.8.1
    5 Stable tag: 2.97.1
     4Tested up to: 6.9.0
     5Stable tag: 2.97.2
    66Requires PHP: 8.1
    77License: GPLv3
     
    6262= Changelog =
    6363* [Changelog link](https://yoda.netoxygen.ch/public/projects/401b5210-986f-46b3-99cb-38546b73e16c/changelog)
     64
     65= 2.97.2 =
     66
     67* fix: Fix the attachments management in the events importer
    6468
    6569= 2.97.1 =
  • ticketack/trunk/vendor/composer/installed.php

    r3412064 r3420004  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => 'a90263d9575497c913b0bfb7de98c9c525f55be4',
     6        'reference' => '92eb5d15c954d2b983254bce2d2442cb1efdf77e',
    77        'type' => 'project',
    88        'install_path' => __DIR__ . '/../../',
     
    6868            'pretty_version' => 'dev-master',
    6969            'version' => 'dev-master',
    70             'reference' => 'a90263d9575497c913b0bfb7de98c9c525f55be4',
     70            'reference' => '92eb5d15c954d2b983254bce2d2442cb1efdf77e',
    7171            'type' => 'project',
    7272            'install_path' => __DIR__ . '/../../',
  • ticketack/trunk/wpticketack.php

    r3412064 r3420004  
    66 * Text Domain: wpticketack
    77 * Domain Path: /app/locales
    8  * Version: 2.97.1
     8 * Version: 2.97.2
    99 * Author: Net Oxygen Sàrl
    1010 * Author URI: https://netoxygen.ch
     
    1818setlocale(LC_TIME, get_locale().'.UTF-8');
    1919
    20 define('TKT_ASSETS_VERSION', '2.97.1.2025120501');
     20define('TKT_ASSETS_VERSION', '2.97.2.2025121501');
    2121
    2222define("TKT_PLUGIN_FILE", (__FILE__));
Note: See TracChangeset for help on using the changeset viewer.