Changeset 3325051
- Timestamp:
- 07/09/2025 02:04:20 PM (9 months ago)
- Location:
- gatherpress
- Files:
-
- 10 edited
- 1 copied
-
tags/0.32.3 (copied) (copied from gatherpress/trunk)
-
tags/0.32.3/gatherpress.php (modified) (1 diff)
-
tags/0.32.3/includes/core/classes/class-assets.php (modified) (1 diff)
-
tags/0.32.3/includes/core/classes/class-event-query.php (modified) (1 diff)
-
tags/0.32.3/includes/data/credits.php (modified) (1 diff)
-
tags/0.32.3/readme.md (modified) (1 diff)
-
trunk/gatherpress.php (modified) (1 diff)
-
trunk/includes/core/classes/class-assets.php (modified) (1 diff)
-
trunk/includes/core/classes/class-event-query.php (modified) (1 diff)
-
trunk/includes/data/credits.php (modified) (1 diff)
-
trunk/readme.md (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
gatherpress/tags/0.32.3/gatherpress.php
r3285913 r3325051 6 6 * Author: The GatherPress Community 7 7 * Author URI: https://gatherpress.org/ 8 * Version: 0.32. 28 * Version: 0.32.3 9 9 * Requires PHP: 7.4 10 10 * Requires at least: 6.7 -
gatherpress/tags/0.32.3/includes/core/classes/class-assets.php
r3271519 r3325051 149 149 */ 150 150 public function maybe_enqueue_styles( string $block_content, array $block ): string { 151 if ( 0 === strpos( $block['blockName'], 'gatherpress/' ) ) {151 if ( isset( $block['blockName'] ) && str_contains( $block['blockName'], 'gatherpress/' ) ) { 152 152 $asset = $this->get_asset_data( 'utility_style' ); 153 153 -
gatherpress/tags/0.32.3/includes/core/classes/class-event-query.php
r3271519 r3325051 292 292 global $wp_query; 293 293 294 // Sanity check, it's been reported that some admin screens may not have $wp_query set. 295 if ( ! $wp_query || ! method_exists( $wp_query, 'get' ) ) { 296 return $query_pieces; 297 } 298 294 299 if ( 'datetime' === $wp_query->get( 'orderby' ) ) { 295 300 $query_pieces = $this->adjust_event_sql( $query_pieces, 'all', $wp_query->get( 'order' ) ); -
gatherpress/tags/0.32.3/includes/data/credits.php
r3285913 r3325051 5 5 6 6 return array ( 7 'version' => '0.32. 2',7 'version' => '0.32.3', 8 8 'project-leaders' => 9 9 array ( -
gatherpress/tags/0.32.3/readme.md
r3285913 r3325051 1 1 # GatherPress 2 2 3 Stable tag: 0.32. 23 Stable tag: 0.32.3 4 4 Tested up to: 6.8.1 5 5 License: GPL v2 or later -
gatherpress/trunk/gatherpress.php
r3285913 r3325051 6 6 * Author: The GatherPress Community 7 7 * Author URI: https://gatherpress.org/ 8 * Version: 0.32. 28 * Version: 0.32.3 9 9 * Requires PHP: 7.4 10 10 * Requires at least: 6.7 -
gatherpress/trunk/includes/core/classes/class-assets.php
r3271519 r3325051 149 149 */ 150 150 public function maybe_enqueue_styles( string $block_content, array $block ): string { 151 if ( 0 === strpos( $block['blockName'], 'gatherpress/' ) ) {151 if ( isset( $block['blockName'] ) && str_contains( $block['blockName'], 'gatherpress/' ) ) { 152 152 $asset = $this->get_asset_data( 'utility_style' ); 153 153 -
gatherpress/trunk/includes/core/classes/class-event-query.php
r3271519 r3325051 292 292 global $wp_query; 293 293 294 // Sanity check, it's been reported that some admin screens may not have $wp_query set. 295 if ( ! $wp_query || ! method_exists( $wp_query, 'get' ) ) { 296 return $query_pieces; 297 } 298 294 299 if ( 'datetime' === $wp_query->get( 'orderby' ) ) { 295 300 $query_pieces = $this->adjust_event_sql( $query_pieces, 'all', $wp_query->get( 'order' ) ); -
gatherpress/trunk/includes/data/credits.php
r3285913 r3325051 5 5 6 6 return array ( 7 'version' => '0.32. 2',7 'version' => '0.32.3', 8 8 'project-leaders' => 9 9 array ( -
gatherpress/trunk/readme.md
r3285913 r3325051 1 1 # GatherPress 2 2 3 Stable tag: 0.32. 23 Stable tag: 0.32.3 4 4 Tested up to: 6.8.1 5 5 License: GPL v2 or later
Note: See TracChangeset
for help on using the changeset viewer.