Plugin Directory

Changeset 3397928


Ignore:
Timestamp:
11/18/2025 10:17:09 AM (5 months ago)
Author:
david.kane
Message:

Releasing v2.26.9

Location:
supapress/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • supapress/trunk/composer.json

    r3374945 r3397928  
    33  "description": "Quickly and easily connect your book metadata (ONIX) to your WordPress site.",
    44  "type": "wordpress-plugin",
    5   "version": "2.26.8",
     5  "version": "2.26.9",
    66  "authors": [
    77    {
  • supapress/trunk/includes/functions.php

    r3333728 r3397928  
    620620
    621621function supapress_multi_selected( $properties, $key, $value, $default = false ) {
    622     if ( isset( $properties[ $key ] ) && in_array( $value, $properties[ $key ] ) ) {
     622    if ( !empty( $properties[ $key ] ) && in_array( $value, $properties[ $key ] ) ) {
    623623        return ' rel="option_' . array_search( $value, $properties[ $key ] ) . '" selected="selected"';
    624624    } elseif ( $default === true ) {
  • supapress/trunk/readme.txt

    r3374945 r3397928  
    44Requires at least: 6.0
    55Tested up to: 6.8.3
    6 Stable tag: 2.26.8
     6Stable tag: 2.26.9
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3838
    3939== Changelog ==
     40
     41= 2.26.9 =
     42Release Date: Nov 2025
     43* Bug: fix check in supapress_multi_selected function
    4044
    4145= 2.26.8 =
  • supapress/trunk/supapress.php

    r3374945 r3397928  
    77 * Plugin URI: https://www.supadu.com
    88 * Description: Quickly and easily connect your book metadata (ONIX) to your WordPress site.
    9  * Version: 2.26.8
     9 * Version: 2.26.9
    1010 * Author: Supadü
    1111 * Author URI: https://www.supadu.com
     
    3737defined( 'ABSPATH' ) or die( 'Illegal Access!' );
    3838
    39 define( 'SUPAPRESS_VERSION', '2.26.8' );
     39define( 'SUPAPRESS_VERSION', '2.26.9' );
    4040
    4141define( 'SUPAPRESS_SITE_URL', get_site_url() );
Note: See TracChangeset for help on using the changeset viewer.