From 9aca8d689b650f1ca9c9b89f45bd032e0239569b Mon Sep 17 00:00:00 2001 From: Claudio Sanches Date: Wed, 15 Jul 2015 15:45:57 -0300 Subject: [PATCH] Added HTML class row-title for coupons, orders, api keys and webhooks table lists --- includes/admin/class-wc-admin-api-keys-table-list.php | 2 +- includes/admin/class-wc-admin-post-types.php | 4 ++-- includes/admin/class-wc-admin-webhooks-table-list.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/includes/admin/class-wc-admin-api-keys-table-list.php b/includes/admin/class-wc-admin-api-keys-table-list.php index 0301c2ba83e..96b42e9c0d0 100644 --- a/includes/admin/class-wc-admin-api-keys-table-list.php +++ b/includes/admin/class-wc-admin-api-keys-table-list.php @@ -63,7 +63,7 @@ class WC_Admin_API_Keys_Table_List extends WP_List_Table { $url = admin_url( 'admin.php?page=wc-settings&tab=api§ion=keys&edit-key=' . $key['key_id'] ); $output = ''; - $output .= ''; + $output .= ''; if ( empty( $key['description'] ) ) { $output .= esc_html__( 'API Key', 'woocommerce' ); } else { diff --git a/includes/admin/class-wc-admin-post-types.php b/includes/admin/class-wc-admin-post-types.php index 72ada9dfadd..6ad6872d73e 100644 --- a/includes/admin/class-wc-admin-post-types.php +++ b/includes/admin/class-wc-admin-post-types.php @@ -453,7 +453,7 @@ class WC_Admin_Post_Types { $title = _draft_or_post_title(); $post_type_object = get_post_type_object( $post->post_type ); - echo '' . esc_html( $title ). ''; + echo '' . esc_html( $title ). ''; _post_states( $post ); @@ -703,7 +703,7 @@ class WC_Admin_Post_Types { } } - printf( _x( '%s by %s', 'Order number by X', 'woocommerce' ), '#' . esc_attr( $the_order->get_order_number() ) . '', $username ); + printf( _x( '%s by %s', 'Order number by X', 'woocommerce' ), '#' . esc_attr( $the_order->get_order_number() ) . '', $username ); if ( $the_order->billing_email ) { echo ''; diff --git a/includes/admin/class-wc-admin-webhooks-table-list.php b/includes/admin/class-wc-admin-webhooks-table-list.php index c44f3fc1a4e..725d50bd479 100644 --- a/includes/admin/class-wc-admin-webhooks-table-list.php +++ b/includes/admin/class-wc-admin-webhooks-table-list.php @@ -86,7 +86,7 @@ class WC_Admin_Webhooks_Table_List extends WP_List_Table { if ( 'trash' == $post_status ) { $output .= esc_html( $title ); } else { - $output .= '' . esc_html( $title ) . ''; + $output .= '' . esc_html( $title ) . ''; } $output .= '';