Changeset 3397928
- Timestamp:
- 11/18/2025 10:17:09 AM (5 months ago)
- Location:
- supapress/trunk
- Files:
-
- 4 edited
-
composer.json (modified) (1 diff)
-
includes/functions.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
supapress.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
supapress/trunk/composer.json
r3374945 r3397928 3 3 "description": "Quickly and easily connect your book metadata (ONIX) to your WordPress site.", 4 4 "type": "wordpress-plugin", 5 "version": "2.26. 8",5 "version": "2.26.9", 6 6 "authors": [ 7 7 { -
supapress/trunk/includes/functions.php
r3333728 r3397928 620 620 621 621 function 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 ] ) ) { 623 623 return ' rel="option_' . array_search( $value, $properties[ $key ] ) . '" selected="selected"'; 624 624 } elseif ( $default === true ) { -
supapress/trunk/readme.txt
r3374945 r3397928 4 4 Requires at least: 6.0 5 5 Tested up to: 6.8.3 6 Stable tag: 2.26. 86 Stable tag: 2.26.9 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 38 38 39 39 == Changelog == 40 41 = 2.26.9 = 42 Release Date: Nov 2025 43 * Bug: fix check in supapress_multi_selected function 40 44 41 45 = 2.26.8 = -
supapress/trunk/supapress.php
r3374945 r3397928 7 7 * Plugin URI: https://www.supadu.com 8 8 * Description: Quickly and easily connect your book metadata (ONIX) to your WordPress site. 9 * Version: 2.26. 89 * Version: 2.26.9 10 10 * Author: Supadü 11 11 * Author URI: https://www.supadu.com … … 37 37 defined( 'ABSPATH' ) or die( 'Illegal Access!' ); 38 38 39 define( 'SUPAPRESS_VERSION', '2.26. 8' );39 define( 'SUPAPRESS_VERSION', '2.26.9' ); 40 40 41 41 define( 'SUPAPRESS_SITE_URL', get_site_url() );
Note: See TracChangeset
for help on using the changeset viewer.