Fix fatal due to _esc_html_e call

This commit is contained in:
Mike Jolley 2017-11-08 12:34:04 +00:00
parent e90819f92e
commit 28fdc73c18
1 changed files with 1 additions and 1 deletions

View File

@ -410,7 +410,7 @@ class WC_Admin_Attributes {
<option value="name_num"><?php esc_html_e( 'Name (numeric)', 'woocommerce' ); ?></option> <option value="name_num"><?php esc_html_e( 'Name (numeric)', 'woocommerce' ); ?></option>
<option value="id"><?php esc_html_e( 'Term ID', 'woocommerce' ); ?></option> <option value="id"><?php esc_html_e( 'Term ID', 'woocommerce' ); ?></option>
</select> </select>
<p class="description"><?php _esc_html_e( 'Determines the sort order of the terms on the frontend shop product pages. If using custom ordering, you can drag and drop the terms in this attribute.', 'woocommerce' ); ?></p> <p class="description"><?php esc_html_e( 'Determines the sort order of the terms on the frontend shop product pages. If using custom ordering, you can drag and drop the terms in this attribute.', 'woocommerce' ); ?></p>
</div> </div>
<?php do_action( 'woocommerce_after_add_attribute_fields' ) ?> <?php do_action( 'woocommerce_after_add_attribute_fields' ) ?>