Skip to content

Commit

Permalink
Merge pull request #2117 from the-events-calendar/release/T24.asag.4
Browse files Browse the repository at this point in the history
Version bump to 5.3.0.4
  • Loading branch information
bordoni authored Jun 18, 2024
2 parents 78c27d8 + 174aca1 commit bd35450
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
5 changes: 5 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
== Changelog ==

= [5.3.0.4] 2024-06-18 =

* Fix - In installations where the plugins or wp-content directories were symbolic linked, assets would fail to be located.[TECTRIA-91]
* Language - 0 new strings added, 0 updated, 0 fuzzied, and 0 obsoleted

= [5.3.0.3] 2024-06-14 =

* Fix - Issue where scripts would not be enqueued as modules. [TECTRIA-86]
Expand Down
3 changes: 3 additions & 0 deletions src/Tribe/Assets.php
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,9 @@ public function register( $origin, $slug, $file, $deps = [], $action = null, $ar
// Work out the root path from the origin.
$root_path = trailingslashit( ! empty( $origin->plugin_path ) ? $origin->plugin_path : $origin->pluginPath ); // phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase

// Follow symlinks.
$root_path = str_replace( trailingslashit( dirname( dirname( dirname( dirname( __DIR__ ) ) ) ) ), trailingslashit( WP_PLUGIN_DIR ), $root_path );

// Fetches the version on the Origin Version constant if not passed.
$version = $arguments['version'] ?? constant( $origin_name . '::VERSION' );

Expand Down
2 changes: 1 addition & 1 deletion src/Tribe/Main.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Tribe__Main {
const OPTIONNAME = 'tribe_events_calendar_options';
const OPTIONNAMENETWORK = 'tribe_events_calendar_network_options';
const FEED_URL = 'https://theeventscalendar.com/feed/';
const VERSION = '5.3.0.3';
const VERSION = '5.3.0.4';

protected $plugin_context;
protected $plugin_context_class;
Expand Down
2 changes: 1 addition & 1 deletion tribe-common.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: Tribe Common
* Description: An event settings framework for managing shared options.
* Version: 5.3.0.3
* Version: 5.3.0.4
* Author: The Events Calendar
* Author URI: http://evnt.is/1x
* Text Domain: tribe-common
Expand Down

0 comments on commit bd35450

Please sign in to comment.