Minor bugfix, missing comma
Missing comma causing errors in some cases
This commit is contained in:
parent
f36d67fa69
commit
c5c340588e
|
@ -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
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue