allowing quotes in store name

This commit is contained in:
Patrick Rauland 2013-09-03 17:11:03 -05:00
parent fe4b13d36d
commit 80fc4ab0a7
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 get_option( 'woocommerce_email_from_name' );
return wp_specialchars_decode( get_option( 'woocommerce_email_from_name' ), ENT_QUOTES );
}
/**