Quote:
Originally Posted by Zahl
Another thing.
The Plugin "Showthread query" reads
PHP 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)";
but should definetely be
PHP 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) ";
Sincle your plugin is probably not the only one that wants to add extra stuff to the query.
|
Correct, it
definately should.
vBulletin Blog also adds stuff to the query, and on random occasions the postbit link wasn't showing.. I narrowed it down to this plugin causing it, changed it as above, and all is working in harmony again.