Minor bugfix, missing comma

Missing comma causing errors in some cases
This commit is contained in:
Aristeides Stathopoulos 2014-01-07 22:14:35 +02:00
parent f36d67fa69
commit c5c340588e
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ abstract class WC_Email extends WC_Settings_API {
'/&(bull|#149|#8226);/i', // Bullet
'/&(pound|#163);/i', // Pound sign
'/&(euro|#8364);/i', // Euro sign
'/$/' // Dollar sign
'/$/', // Dollar sign
'/&[^&;]+;/i', // Unknown/unhandled entities
'/[ ]{2,}/' // Runs of spaces, post-handling
);