Quote:
Originally Posted by ne_one
I'm getting a database error with this build as well.
Anyone else?
|
I managed to resolve this issue by re-importing the XML file.
I noticed however that special characters will still trigger an error if they are used in the title.
As a quick fix, do a search for :
PHP Code:
$threadtitle = htmlspecialchars($threadtitle);
And comment out the text:
PHP Code:
//$threadtitle = htmlspecialchars($threadtitle);
This should allow any text to be used for the title and content.
Oh and... ΘωΘ