removing html decoding from email from name
This commit is contained in:
parent
9ba80fb34b
commit
fe4b13d36d
|
@ -383,7 +383,7 @@ abstract class WC_Email extends WC_Settings_API {
|
|||
* @return string
|
||||
*/
|
||||
function get_from_name() {
|
||||
return wp_specialchars_decode( esc_html( get_option( 'woocommerce_email_from_name' ) ) );
|
||||
return get_option( 'woocommerce_email_from_name' );
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue