Plugin Directory

Changeset 3325051


Ignore:
Timestamp:
07/09/2025 02:04:20 PM (9 months ago)
Author:
gatherpress
Message:

Update to version 0.32.3 from GitHub

Location:
gatherpress
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • gatherpress/tags/0.32.3/gatherpress.php

    r3285913 r3325051  
    66 * Author:            The GatherPress Community
    77 * Author URI:        https://gatherpress.org/
    8  * Version:           0.32.2
     8 * Version:           0.32.3
    99 * Requires PHP:      7.4
    1010 * Requires at least: 6.7
  • gatherpress/tags/0.32.3/includes/core/classes/class-assets.php

    r3271519 r3325051  
    149149     */
    150150    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/' ) ) {
    152152            $asset = $this->get_asset_data( 'utility_style' );
    153153
  • gatherpress/tags/0.32.3/includes/core/classes/class-event-query.php

    r3271519 r3325051  
    292292        global $wp_query;
    293293
     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
    294299        if ( 'datetime' === $wp_query->get( 'orderby' ) ) {
    295300            $query_pieces = $this->adjust_event_sql( $query_pieces, 'all', $wp_query->get( 'order' ) );
  • gatherpress/tags/0.32.3/includes/data/credits.php

    r3285913 r3325051  
    55
    66return array (
    7   'version' => '0.32.2',
     7  'version' => '0.32.3',
    88  'project-leaders' =>
    99  array (
  • gatherpress/tags/0.32.3/readme.md

    r3285913 r3325051  
    11# GatherPress
    22
    3 Stable tag: 0.32.2 
     3Stable tag: 0.32.3 
    44Tested up to: 6.8.1 
    55License: GPL v2 or later 
  • gatherpress/trunk/gatherpress.php

    r3285913 r3325051  
    66 * Author:            The GatherPress Community
    77 * Author URI:        https://gatherpress.org/
    8  * Version:           0.32.2
     8 * Version:           0.32.3
    99 * Requires PHP:      7.4
    1010 * Requires at least: 6.7
  • gatherpress/trunk/includes/core/classes/class-assets.php

    r3271519 r3325051  
    149149     */
    150150    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/' ) ) {
    152152            $asset = $this->get_asset_data( 'utility_style' );
    153153
  • gatherpress/trunk/includes/core/classes/class-event-query.php

    r3271519 r3325051  
    292292        global $wp_query;
    293293
     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
    294299        if ( 'datetime' === $wp_query->get( 'orderby' ) ) {
    295300            $query_pieces = $this->adjust_event_sql( $query_pieces, 'all', $wp_query->get( 'order' ) );
  • gatherpress/trunk/includes/data/credits.php

    r3285913 r3325051  
    55
    66return array (
    7   'version' => '0.32.2',
     7  'version' => '0.32.3',
    88  'project-leaders' =>
    99  array (
  • gatherpress/trunk/readme.md

    r3285913 r3325051  
    11# GatherPress
    22
    3 Stable tag: 0.32.2 
     3Stable tag: 0.32.3 
    44Tested up to: 6.8.1 
    55License: GPL v2 or later 
Note: See TracChangeset for help on using the changeset viewer.