Quote:
Originally Posted by Cold Steel
After getting thousands of messages from usenet, I'm starting to run into errors.
This is the latest:
Code:
(post.msgid = '<For-Tom_Cerco's-benefit-A772E2.23264904042004@phswest.com>') AND
Any ideas?
|
The single quote in the message ID is the cause of the problem. Message ID should not contain quotes charactor. You can either bypass this message by editing the lastmsg in the control panel, or do the following:
Around line 338 find:
(post.msgid = '$par_msgid') AND
Change it to:
(post.msgid = '" . addslashes($par_msgid) . "') AND