From 54437afc5c206292013af0850aef67f1a634ba59 Mon Sep 17 00:00:00 2001 From: Andrew Benbow Date: Fri, 22 May 2015 19:33:59 +0100 Subject: [PATCH 01/10] Update html-admin-page-status-report.php --- includes/admin/views/html-admin-page-status-report.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/admin/views/html-admin-page-status-report.php b/includes/admin/views/html-admin-page-status-report.php index f4eeddd7490..2979ace1c39 100644 --- a/includes/admin/views/html-admin-page-status-report.php +++ b/includes/admin/views/html-admin-page-status-report.php @@ -29,12 +29,12 @@ if ( ! defined( 'ABSPATH' ) ) { : [?]'; ?> - + : [?]'; ?> - + : From 79d4d921fd6f04f98561ce8495d8f66af9331e77 Mon Sep 17 00:00:00 2001 From: Andrew Benbow Date: Sat, 23 May 2015 07:22:12 +0100 Subject: [PATCH 02/10] Update html-admin-page-status-report.php --- includes/admin/views/html-admin-page-status-report.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/admin/views/html-admin-page-status-report.php b/includes/admin/views/html-admin-page-status-report.php index 2979ace1c39..bf5ad8761d5 100644 --- a/includes/admin/views/html-admin-page-status-report.php +++ b/includes/admin/views/html-admin-page-status-report.php @@ -29,12 +29,12 @@ if ( ! defined( 'ABSPATH' ) ) { : [?]'; ?> - + : [?]'; ?> - + : From d53d21781b5504e2dba8e308a66763eabaf11dbb Mon Sep 17 00:00:00 2001 From: Claudio Sanches Date: Tue, 26 May 2015 10:24:49 -0300 Subject: [PATCH 03/10] [2.3] Fixed product category media upload modal and some coding standards, closes #8227 --- includes/admin/class-wc-admin-taxonomies.php | 73 +++++++++++--------- 1 file changed, 39 insertions(+), 34 deletions(-) diff --git a/includes/admin/class-wc-admin-taxonomies.php b/includes/admin/class-wc-admin-taxonomies.php index 34e4812e28b..2722a3dfaf6 100644 --- a/includes/admin/class-wc-admin-taxonomies.php +++ b/includes/admin/class-wc-admin-taxonomies.php @@ -2,11 +2,11 @@ /** * Handles taxonomies in admin * - * @class WC_Admin_Taxonomies - * @version 2.1.0 - * @package WooCommerce/Admin - * @category Class - * @author WooThemes + * @class WC_Admin_Taxonomies + * @version 2.3.10 + * @package WooCommerce/Admin + * @category Class + * @author WooThemes */ if ( ! defined( 'ABSPATH' ) ) { @@ -58,7 +58,7 @@ class WC_Admin_Taxonomies { * @param mixed $taxonomy */ public function create_term( $term_id, $tt_id = '', $taxonomy = '' ) { - if ( $taxonomy != 'product_cat' && ! taxonomy_is_product_attribute( $taxonomy ) ) { + if ( 'product_cat' != $taxonomy && ! taxonomy_is_product_attribute( $taxonomy ) ) { return; } @@ -98,8 +98,8 @@ class WC_Admin_Taxonomies {
-
-
+
+
@@ -107,8 +107,8 @@ class WC_Admin_Taxonomies {