Quote:
Originally Posted by FASherman
EDIT /vbugs.php
FIND BOTH INSTANCES (There are two) OF:
PHP Code:
LEFT JOIN " . TABLE_PREFIX . "user ON (vbugs.userid = user.userid)
AND REPLACE WITH
PHP Code:
LEFT JOIN " . TABLE_PREFIX . "user AS user ON (vbugs.userid = user.userid)
SAVE vbugs.php
This fixed it for me and I like the results.
|
This one is your typo, my friend. In one of those two replacements, you left off the ")" at the end of the line.
Search vbugs.php for
PHP Code:
LEFT JOIN " . TABLE_PREFIX . "user AS user ON (vbugs.userid = user.userid
And add ")" to the end of the one that doesn't have it.