Quote:
Originally Posted by john_rsd
Error messages
After isntalling the new mime.php i now get this error when importing some messages
You can see the whole message here
http://proteluser.com/bbs3/showthread.php?t=2400
Never seen this error before, ill investigate more
Any information appreciated
|
Edit gateway.php, around line 333, replace the whole block with the following:
PHP Code:
[code]
if (!$message['text'] and $message['html']){
$pattern = array(
"/\n/",
"/<br([^>]*)>/siU",
"/<[\/]*(div|p)([^>]*)>/siU",
"/<b>(.*)<\/b>/siU",
"/<i>(.*)<\/i>/siU",
"/<a[^>]*href=([^ >]*)>(.*)<\/a>/siU"
);
$replace = array(
" ",
"\n",
"\n\n",
"[b]\\1[/b]",
"[i]\\1[/i]",
"[url=\\1]\\2[/url]"
);
$message['text'] = strip_tags(preg_replace($pattern, $replace, $message['html']));
}
[/code]