mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 18:32:23 +01:00
Meta: Allow empty strings to be set by Custom Fields meta box.
Because the REST API allows meta keys to have empty values, the Custom Fields meta box should permit the same behavior. Props charlestonsw, soulseekah, danielbachhuber. Merges [43811] to trunk. Fixes #43559. Built from https://develop.svn.wordpress.org/trunk@44153 git-svn-id: http://core.svn.wordpress.org/trunk@43983 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
4d3f9732b1
commit
dd7e2243fa
@ -1443,9 +1443,6 @@ function wp_ajax_add_meta() {
|
|||||||
if ( '' == trim( $key ) ) {
|
if ( '' == trim( $key ) ) {
|
||||||
wp_die( __( 'Please provide a custom field name.' ) );
|
wp_die( __( 'Please provide a custom field name.' ) );
|
||||||
}
|
}
|
||||||
if ( '' == trim( $value ) ) {
|
|
||||||
wp_die( __( 'Please provide a custom field value.' ) );
|
|
||||||
}
|
|
||||||
if ( ! $meta = get_metadata_by_mid( 'post', $mid ) ) {
|
if ( ! $meta = get_metadata_by_mid( 'post', $mid ) ) {
|
||||||
wp_die( 0 ); // if meta doesn't exist
|
wp_die( 0 ); // if meta doesn't exist
|
||||||
}
|
}
|
||||||
|
@ -867,7 +867,7 @@ function add_meta( $post_ID ) {
|
|||||||
$metavalue = trim( $metavalue );
|
$metavalue = trim( $metavalue );
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( ( '0' === $metavalue || ! empty( $metavalue ) ) && ( ( ( '#NONE#' != $metakeyselect ) && ! empty( $metakeyselect ) ) || ! empty( $metakeyinput ) ) ) {
|
if ( ( ( '#NONE#' != $metakeyselect ) && ! empty( $metakeyselect ) ) || ! empty( $metakeyinput ) ) {
|
||||||
/*
|
/*
|
||||||
* We have a key/value pair. If both the select and the input
|
* We have a key/value pair. If both the select and the input
|
||||||
* for the key have data, the input takes precedence.
|
* for the key have data, the input takes precedence.
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.1-alpha-44152';
|
$wp_version = '5.1-alpha-44153';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
Reference in New Issue
Block a user