Plugin Directory

Changeset 3268502


Ignore:
Timestamp:
04/08/2025 08:59:23 AM (8 months ago)
Author:
deliciousbrains
Message:

Deploy version 6.4.0.1

Location:
advanced-custom-fields
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • advanced-custom-fields/tags/6.4.0.1/acf.php

    r3267992 r3268502  
    1010 * Plugin URI:        https://www.advancedcustomfields.com
    1111 * Description:       Customize WordPress with powerful, professional and intuitive fields.
    12  * Version:           6.4.0
     12 * Version:           6.4.0.1
    1313 * Author:            WP Engine
    1414 * Author URI:        https://wpengine.com/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields
     
    3636         * @var string
    3737         */
    38         public $version = '6.4.0';
     38        public $version = '6.4.0.1';
    3939
    4040        /**
  • advanced-custom-fields/tags/6.4.0.1/readme.txt

    r3267992 r3268502  
    33Tags: acf, fields, custom fields, meta, repeater
    44Requires at least: 6.0
    5 Tested up to: 6.7.2
     5Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 6.4.0
     7Stable tag: 6.4.0.1
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    9494
    9595== Changelog ==
     96
     97= 6.4.0.1 =
     98*Release Date 8th April 2025*
     99
     100* Fix - Calling `acf_get_reference()` with an invalid field name no longer causes a fatal error
    96101
    97102= 6.4.0 =
  • advanced-custom-fields/tags/6.4.0.1/src/Meta/MetaLocation.php

    r3267992 r3268502  
    110110     * @return string|null
    111111     */
    112     public function get_reference( $object_id = 0, string $field_name = '' ) {
     112    public function get_reference( $object_id = 0, $field_name = '' ) {
    113113        $reference = get_metadata( $this->location_type, $object_id, $this->reference_prefix . $field_name );
    114114        return $reference[0] ?? null;
  • advanced-custom-fields/trunk/acf.php

    r3267992 r3268502  
    1010 * Plugin URI:        https://www.advancedcustomfields.com
    1111 * Description:       Customize WordPress with powerful, professional and intuitive fields.
    12  * Version:           6.4.0
     12 * Version:           6.4.0.1
    1313 * Author:            WP Engine
    1414 * Author URI:        https://wpengine.com/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields
     
    3636         * @var string
    3737         */
    38         public $version = '6.4.0';
     38        public $version = '6.4.0.1';
    3939
    4040        /**
  • advanced-custom-fields/trunk/readme.txt

    r3267992 r3268502  
    33Tags: acf, fields, custom fields, meta, repeater
    44Requires at least: 6.0
    5 Tested up to: 6.7.2
     5Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 6.4.0
     7Stable tag: 6.4.0.1
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    9494
    9595== Changelog ==
     96
     97= 6.4.0.1 =
     98*Release Date 8th April 2025*
     99
     100* Fix - Calling `acf_get_reference()` with an invalid field name no longer causes a fatal error
    96101
    97102= 6.4.0 =
  • advanced-custom-fields/trunk/src/Meta/MetaLocation.php

    r3267992 r3268502  
    110110     * @return string|null
    111111     */
    112     public function get_reference( $object_id = 0, string $field_name = '' ) {
     112    public function get_reference( $object_id = 0, $field_name = '' ) {
    113113        $reference = get_metadata( $this->location_type, $object_id, $this->reference_prefix . $field_name );
    114114        return $reference[0] ?? null;
Note: See TracChangeset for help on using the changeset viewer.