Changeset 3268502
- Timestamp:
- 04/08/2025 08:59:23 AM (8 months ago)
- Location:
- advanced-custom-fields
- Files:
-
- 6 edited
- 1 copied
-
tags/6.4.0.1 (copied) (copied from advanced-custom-fields/trunk)
-
tags/6.4.0.1/acf.php (modified) (2 diffs)
-
tags/6.4.0.1/readme.txt (modified) (2 diffs)
-
tags/6.4.0.1/src/Meta/MetaLocation.php (modified) (1 diff)
-
trunk/acf.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/Meta/MetaLocation.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
advanced-custom-fields/tags/6.4.0.1/acf.php
r3267992 r3268502 10 10 * Plugin URI: https://www.advancedcustomfields.com 11 11 * Description: Customize WordPress with powerful, professional and intuitive fields. 12 * Version: 6.4.0 12 * Version: 6.4.0.1 13 13 * Author: WP Engine 14 14 * Author URI: https://wpengine.com/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields … … 36 36 * @var string 37 37 */ 38 public $version = '6.4.0 ';38 public $version = '6.4.0.1'; 39 39 40 40 /** -
advanced-custom-fields/tags/6.4.0.1/readme.txt
r3267992 r3268502 3 3 Tags: acf, fields, custom fields, meta, repeater 4 4 Requires at least: 6.0 5 Tested up to: 6. 7.25 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 6.4.0 7 Stable tag: 6.4.0.1 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 94 94 95 95 == 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 96 101 97 102 = 6.4.0 = -
advanced-custom-fields/tags/6.4.0.1/src/Meta/MetaLocation.php
r3267992 r3268502 110 110 * @return string|null 111 111 */ 112 public function get_reference( $object_id = 0, string$field_name = '' ) {112 public function get_reference( $object_id = 0, $field_name = '' ) { 113 113 $reference = get_metadata( $this->location_type, $object_id, $this->reference_prefix . $field_name ); 114 114 return $reference[0] ?? null; -
advanced-custom-fields/trunk/acf.php
r3267992 r3268502 10 10 * Plugin URI: https://www.advancedcustomfields.com 11 11 * Description: Customize WordPress with powerful, professional and intuitive fields. 12 * Version: 6.4.0 12 * Version: 6.4.0.1 13 13 * Author: WP Engine 14 14 * Author URI: https://wpengine.com/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields … … 36 36 * @var string 37 37 */ 38 public $version = '6.4.0 ';38 public $version = '6.4.0.1'; 39 39 40 40 /** -
advanced-custom-fields/trunk/readme.txt
r3267992 r3268502 3 3 Tags: acf, fields, custom fields, meta, repeater 4 4 Requires at least: 6.0 5 Tested up to: 6. 7.25 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 6.4.0 7 Stable tag: 6.4.0.1 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 94 94 95 95 == 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 96 101 97 102 = 6.4.0 = -
advanced-custom-fields/trunk/src/Meta/MetaLocation.php
r3267992 r3268502 110 110 * @return string|null 111 111 */ 112 public function get_reference( $object_id = 0, string$field_name = '' ) {112 public function get_reference( $object_id = 0, $field_name = '' ) { 113 113 $reference = get_metadata( $this->location_type, $object_id, $this->reference_prefix . $field_name ); 114 114 return $reference[0] ?? null;
Note: See TracChangeset
for help on using the changeset viewer.