I found a problem in the plugin:
When I goto the AdminCP and goto Manage Plugins, there is an entry called "gXBL: Showthread query"
Here is what you have:
Code:
$hook_query_fields = ", gxboxlive.rank AS gxblrank, gxboxlive.gamertag AS gxblgamertag, gxboxlive.score AS gxblscore";
$hook_query_joins = "LEFT JOIN " . TABLE_PREFIX . "gxboxlive AS gxboxlive ON (user.userid = gxboxlive.userid)";
Here is what you should have:
Code:
$hook_query_fields .= ", gxboxlive.rank AS gxblrank, gxboxlive.gamertag AS gxblgamertag, gxboxlive.score AS gxblscore";
$hook_query_joins .= "LEFT JOIN " . TABLE_PREFIX . "gxboxlive AS gxboxlive ON (user.userid = gxboxlive.userid)";
I basically just added the concatenation period in there, this was breaking my helpful answers plugin that I had installed.
Hope this helps someone.