Plugin Directory

Changeset 3001857


Ignore:
Timestamp:
11/26/2023 06:11:56 PM (2 years ago)
Author:
Tim Scheman
Message:

Version 1.4.1

Location:
artistpress/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • artistpress/trunk/admin/includes/metaboxes/meta_box.php

    r2107115 r3001857  
    369369 * @return  bool                whether or not the type is in the provided array
    370370 */
    371 function meta_box_find_repeatable( $needle = 'repeatable', $haystack ) {
     371function meta_box_find_repeatable($haystack, $needle = 'repeatable') {
    372372    foreach ( $haystack as $h )
    373373        if ( isset( $h['type'] ) && $h['type'] == $needle )
     
    524524                meta_box_find_field_type( 'chosen', $this->fields ),
    525525                meta_box_find_field_type( 'post_chosen', $this->fields ),
    526                 meta_box_find_repeatable( 'repeatable', $this->fields ),
     526                meta_box_find_repeatable($this->fields, 'repeatable'),
    527527                meta_box_find_field_type( 'image', $this->fields ),
    528528                meta_box_find_field_type( 'file', $this->fields )
  • artistpress/trunk/readme.txt

    r2903013 r3001857  
    33Tags: band, artist, artists, shows, venues, gallery, events, event, event listing, custom post types
    44Requires at least: 5.8
    5 Tested up to: 6.2
     5Tested up to: 6.4.1
    66Requires PHP: 7.4
    7 Stable tag: 1.4
     7Stable tag: 1.4.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9393== Changelog ==
    9494
     95= 1.4.1 =
     96* Verified that ArtistPress is functional with WordPress 6.4.1
     97* Verified that ArtistPress is ready for PHP 8.2
     98* Fix: Required paremeter be first parameter called in method determining a meta field is a repeatable fields type.
     99* Fix: Ensure repeatable fields functioning properly after parameter order fix.
     100
    95101= 1.4 =
    96102* Ensured that ArtistPress is functional with WordPress 6.2
Note: See TracChangeset for help on using the changeset viewer.