Quote:
Originally Posted by Sparkz
The fix here is to find
PHP Code:
$status = $db->query_first("
SELECT *
FROM vbug_status
WHERE vbug_statusid = " . $vbulletin->GPC['vbug_statusid'] . "
");
and change that to
PHP Code:
$status = $db->query_first("
SELECT *
FROM " . TABLE_PREFIX . "vbug_status
WHERE vbug_statusid = " . $vbulletin->GPC['vbug_statusid'] . "
");
The code in question is around line 711 in admincp/vbugs_admin.php
|
a Table_prefix should also be added in the query around line 895 (in the "removeseverity" section) if we want this functionality
in some templates the $session[sessionurl] / $session[sessionurl_q] is missing. And this is needed if a user's browser does not accept cookies.
with some little fixes vBug-lite works quite fine for me

Thanks Dark_Wizard!
(me clicks install

)