allowing quotes in store name
This commit is contained in:
parent
fe4b13d36d
commit
80fc4ab0a7
|
@ -383,7 +383,7 @@ abstract class WC_Email extends WC_Settings_API {
|
|||
* @return string
|
||||
*/
|
||||
function get_from_name() {
|
||||
return get_option( 'woocommerce_email_from_name' );
|
||||
return wp_specialchars_decode( get_option( 'woocommerce_email_from_name' ), ENT_QUOTES );
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue