On Sun, Nov 27, 2005 at 06:06:02PM -0800, Corey Innis wrote:
// regex patterns $mailto_regexp_newlines = '/[,;]*\s*\r\n/';
Not sure, but shouldn't that one be changed to something like
'/[,;]*\s*(\r|\n|\r\n)/'
Because of all the different line endings on windows, mac, unix, etc?
Balu