Changeset 3420004
- Timestamp:
- 12/15/2025 11:05:18 AM (4 months ago)
- Location:
- ticketack/trunk
- Files:
-
- 6 edited
-
app/helpers/sync_helper.class.php (modified) (1 diff)
-
app/ticketack/models/event.class.php (modified) (1 diff)
-
app/ticketack/models/screening.class.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
vendor/composer/installed.php (modified) (2 diffs)
-
wpticketack.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ticketack/trunk/app/helpers/sync_helper.class.php
r3388937 r3420004 48 48 continue; 49 49 } 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); 51 51 if (!is_null($tr_post_id)) { 52 52 static::link_translations($def_post_id, $tr_post_id, $lang); -
ticketack/trunk/app/ticketack/models/event.class.php
r3046404 r3420004 86 86 public function __construct(array &$properties = []) 87 87 { 88 if (array_key_exists('created_at', $properties) ) {88 if (array_key_exists('created_at', $properties) && !empty($properties['created_at'])) { 89 89 $this->created_at = tkt_iso8601_to_datetime($properties['created_at']); 90 90 unset($properties['created_at']); 91 91 } 92 if (array_key_exists('updated_at', $properties) ) {92 if (array_key_exists('updated_at', $properties) && !empty($properties['updated_at'])) { 93 93 $this->updated_at = tkt_iso8601_to_datetime($properties['updated_at']); 94 94 unset($properties['updated_at']); -
ticketack/trunk/app/ticketack/models/screening.class.php
r3388937 r3420004 229 229 public function __construct(array &$properties = []) 230 230 { 231 if (array_key_exists('start_at', $properties) ) {231 if (array_key_exists('start_at', $properties) && !empty($properties['start_at'])) { 232 232 $this->start_at = tkt_iso8601_to_datetime($properties['start_at']); 233 233 unset($properties['start_at']); 234 234 } 235 if (array_key_exists('stop_at', $properties) ) {235 if (array_key_exists('stop_at', $properties) && !empty($properties['stop_at'])) { 236 236 $this->stop_at = tkt_iso8601_to_datetime($properties['stop_at']); 237 237 unset($properties['stop_at']); -
ticketack/trunk/readme.txt
r3412064 r3420004 2 2 Tags: ticketack 3 3 Requires at least: 5.9 4 Tested up to: 6. 8.15 Stable tag: 2.97. 14 Tested up to: 6.9.0 5 Stable tag: 2.97.2 6 6 Requires PHP: 8.1 7 7 License: GPLv3 … … 62 62 = Changelog = 63 63 * [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 64 68 65 69 = 2.97.1 = -
ticketack/trunk/vendor/composer/installed.php
r3412064 r3420004 4 4 'pretty_version' => 'dev-master', 5 5 'version' => 'dev-master', 6 'reference' => ' a90263d9575497c913b0bfb7de98c9c525f55be4',6 'reference' => '92eb5d15c954d2b983254bce2d2442cb1efdf77e', 7 7 'type' => 'project', 8 8 'install_path' => __DIR__ . '/../../', … … 68 68 'pretty_version' => 'dev-master', 69 69 'version' => 'dev-master', 70 'reference' => ' a90263d9575497c913b0bfb7de98c9c525f55be4',70 'reference' => '92eb5d15c954d2b983254bce2d2442cb1efdf77e', 71 71 'type' => 'project', 72 72 'install_path' => __DIR__ . '/../../', -
ticketack/trunk/wpticketack.php
r3412064 r3420004 6 6 * Text Domain: wpticketack 7 7 * Domain Path: /app/locales 8 * Version: 2.97. 18 * Version: 2.97.2 9 9 * Author: Net Oxygen Sàrl 10 10 * Author URI: https://netoxygen.ch … … 18 18 setlocale(LC_TIME, get_locale().'.UTF-8'); 19 19 20 define('TKT_ASSETS_VERSION', '2.97. 1.2025120501');20 define('TKT_ASSETS_VERSION', '2.97.2.2025121501'); 21 21 22 22 define("TKT_PLUGIN_FILE", (__FILE__));
Note: See TracChangeset
for help on using the changeset viewer.