![Picture of Po Cak Picture of Po Cak](/graphics/unknown.gif)
Po Cak - 2011-11-09 23:55:21
If I call the ValidateEmailAddress method of the class email_message_class then I get the following error:
Warning: Wrong parameter count for str_replace() in C:\...\mimemessage_1.92\email_message.php on line 1008
I think the referred line should be replaced.
old: return(preg_match('/'.str_replace('/', '\\/'. $this->email_regular_expression).'/i',$address));
new: return(preg_match('/'.str_replace('/', '\\/', $this->email_regular_expression).'/i',$address));
The difference is the period versus comma, just before $this.