Plugin Directory

Changeset 3280779


Ignore:
Timestamp:
04/24/2025 10:04:07 AM (11 months ago)
Author:
a3rev
Message:

Release new version 3.2.4

  • This maintenance release has a bug fix plus tested for compatibility with WordPress 6.8
  • Fix - validate first argument is array for array_merge func
  • Tweak - Test for compatibility with WordPress 6.8
Location:
a3-portfolio/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • a3-portfolio/trunk/a3-portfolio.php

    r3272165 r3280779  
    33Plugin Name: a3 Portfolio
    44Description: Creates a beautiful fully mobile responsive, fully customizable, Google images style portfolio to showcase your work.
    5 Version: 3.2.3
     5Version: 3.2.4
    66Author: a3rev Software
    77Author URI: https://a3rev.com/
     
    3636define( 'A3_PORTFOLIO_KEY', 'a3_portfolios' );
    3737define( 'A3_PORTFOLIO_PREFIX', 'a3_portfolio_' );
    38 define( 'A3_PORTFOLIO_VERSION', '3.2.3' );
     38define( 'A3_PORTFOLIO_VERSION', '3.2.4' );
    3939define( 'A3_PORTFOLIO_G_FONTS', true );
    4040
  • a3-portfolio/trunk/changelog.txt

    r3184715 r3280779  
    11== Changelog ==
     2
     3= 3.2.4 - 2025/04/24 =
     4* This maintenance release has a bug fix plus tested for compatibility with WordPress 6.8
     5* Fix - validate first argument is array for array_merge func
     6* Tweak - Test for compatibility with WordPress 6.8
    27
    38= 3.2.3 - 2024/11/09 =
  • a3-portfolio/trunk/includes/frontend/class-a3-portfolio-template-loader.php

    r3023262 r3280779  
    142142        if (  $is_404 || ( ( isset($portfolio_query->post_count) && $portfolio_query->post_count == 0 ) && isset($portfolio_query_vars['portfolio_cat'] ) ) ) {
    143143
    144             $args = array_merge($portfolio_query->query, array('posts_per_page' => $number_portfolios, 'orderby' => 'post_date' ) );
     144            $args = array(
     145                'posts_per_page' => $number_portfolios,
     146                'orderby'        => 'post_date',
     147            );
     148            if ( ! empty( $portfolio_query->query ) ) {
     149                $args = array_merge( $portfolio_query->query, $args );
     150            }
    145151
    146152            $wp_query = new \WP_Query($args);
  • a3-portfolio/trunk/readme.txt

    r3272165 r3280779  
    55Requires at least: 6.0
    66Tested up to: 6.8
    7 Stable tag: 3.2.3
     7Stable tag: 3.2.4
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    167167
    168168== Changelog ==
     169
     170= 3.2.4 - 2025/04/24 =
     171* This maintenance release has a bug fix plus tested for compatibility with WordPress 6.8
     172* Fix - validate first argument is array for array_merge func
     173* Tweak - Test for compatibility with WordPress 6.8
    169174
    170175= 3.2.3 - 2024/11/09 =
     
    801806== Upgrade Notice ==
    802807
     808= 3.2.4 =
     809This maintenance release has a bug fix plus tested for compatibility with WordPress 6.8
     810
    803811= 3.2.3 =
    804812This maintenance release contains a bug fix plus compatibility with WordPress major release version 6.7
Note: See TracChangeset for help on using the changeset viewer.