[2.4] [API] Avoid undefined $taxonomy warnings while save variable attributes, closes #9456
This commit is contained in:
parent
a7028e7734
commit
4522b68a47
|
@ -1298,8 +1298,8 @@ class WC_API_Products extends WC_API_Resource {
|
||||||
$attributes = array();
|
$attributes = array();
|
||||||
|
|
||||||
foreach ( $data['attributes'] as $attribute ) {
|
foreach ( $data['attributes'] as $attribute ) {
|
||||||
$is_taxonomy = 0;
|
$is_taxonomy = 0;
|
||||||
$taxonomy = 0;
|
$taxonomy = 0;
|
||||||
|
|
||||||
if ( ! isset( $attribute['name'] ) ) {
|
if ( ! isset( $attribute['name'] ) ) {
|
||||||
continue;
|
continue;
|
||||||
|
@ -1925,6 +1925,7 @@ class WC_API_Products extends WC_API_Resource {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$taxonomy = 0;
|
||||||
$_attribute = array();
|
$_attribute = array();
|
||||||
|
|
||||||
if ( isset( $attribute['slug'] ) ) {
|
if ( isset( $attribute['slug'] ) ) {
|
||||||
|
|
|
@ -845,8 +845,8 @@ class WC_API_Products extends WC_API_Resource {
|
||||||
$attributes = array();
|
$attributes = array();
|
||||||
|
|
||||||
foreach ( $data['attributes'] as $attribute ) {
|
foreach ( $data['attributes'] as $attribute ) {
|
||||||
$is_taxonomy = 0;
|
$is_taxonomy = 0;
|
||||||
$taxonomy = 0;
|
$taxonomy = 0;
|
||||||
|
|
||||||
if ( ! isset( $attribute['name'] ) ) {
|
if ( ! isset( $attribute['name'] ) ) {
|
||||||
continue;
|
continue;
|
||||||
|
@ -1462,6 +1462,7 @@ class WC_API_Products extends WC_API_Resource {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$taxonomy = 0;
|
||||||
$_attribute = array();
|
$_attribute = array();
|
||||||
|
|
||||||
if ( isset( $attribute['slug'] ) ) {
|
if ( isset( $attribute['slug'] ) ) {
|
||||||
|
|
Loading…
Reference in New Issue