Changeset 3001857
- Timestamp:
- 11/26/2023 06:11:56 PM (2 years ago)
- Location:
- artistpress/trunk
- Files:
-
- 2 edited
-
admin/includes/metaboxes/meta_box.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
artistpress/trunk/admin/includes/metaboxes/meta_box.php
r2107115 r3001857 369 369 * @return bool whether or not the type is in the provided array 370 370 */ 371 function meta_box_find_repeatable( $needle = 'repeatable', $haystack) {371 function meta_box_find_repeatable($haystack, $needle = 'repeatable') { 372 372 foreach ( $haystack as $h ) 373 373 if ( isset( $h['type'] ) && $h['type'] == $needle ) … … 524 524 meta_box_find_field_type( 'chosen', $this->fields ), 525 525 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'), 527 527 meta_box_find_field_type( 'image', $this->fields ), 528 528 meta_box_find_field_type( 'file', $this->fields ) -
artistpress/trunk/readme.txt
r2903013 r3001857 3 3 Tags: band, artist, artists, shows, venues, gallery, events, event, event listing, custom post types 4 4 Requires at least: 5.8 5 Tested up to: 6. 25 Tested up to: 6.4.1 6 6 Requires PHP: 7.4 7 Stable tag: 1.4 7 Stable tag: 1.4.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 93 93 == Changelog == 94 94 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 95 101 = 1.4 = 96 102 * Ensured that ArtistPress is functional with WordPress 6.2
Note: See TracChangeset
for help on using the changeset viewer.