Merge pull request #4467 from aristath/master

Minor bugfix, missing comma
This commit is contained in:
Coen Jacobs 2014-01-07 14:51:14 -08:00
commit a1ea33b828
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
);