geez it's seems when I upload the "showthread.php" everything goes to hell. I don't know which one to edit. From the
In /showthread.php
-------------------------------
==>Find:
'pollresult'
==>Replace With:
'pollresult',
'awards_bit'
==>Find:
usertextfield.*,
==>Replace With:
usertextfield.*, useraward.*,
==>Find:
LEFT JOIN " . TABLE_PREFIX . "usertextfield AS usertextfield ON(usertextfield.userid=announcement.userid)
==>Replace With:
LEFT JOIN " . TABLE_PREFIX . "usertextfield AS usertextfield ON(usertextfield.userid=announcement.userid)
LEFT JOIN " . TABLE_PREFIX . "useraward AS useraward ON(useraward.userid = user.userid)
Their is 2 of each these. And on the LEFT JOIN " . TABLE_PREFIX . "usertextfield AS usertextfield ON(usertextfield.userid=announcement.userid)
in my file it has
LEFT JOIN " . TABLE_PREFIX . "usertextfield AS usertextfield ON(usertextfield.userid = user.userid)
LEFT JOIN " . TABLE_PREFIX . "usertextfield AS usertextfield ON(usertextfield.userid = user.userid)
See how it has AS as oppose to ON?
Please help?
|