removing html decoding from email from name

This commit is contained in:
Patrick Rauland 2013-08-27 12:23:42 -05:00
parent 9ba80fb34b
commit fe4b13d36d
1 changed files with 1 additions and 1 deletions

View File

@ -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' );
}
/**