I noticed a small discrepancy.
Install instructions say:
Quote:
search for: (function: upgrade bbcode database)
PHP Code:
twoparams = '" . $db->escape_string($vbulletin->GPC['twoparams']) . "',
add below:
PHP Code:
`separator` = " . intval ($vbulletin->GPC['bbcode_separator']) . ", `active` = " . intval ($vbulletin->GPC['bbcode_active']) . ",
|
but I don't have that line. Closest matching line is:
PHP Code:
if ($db->query_first("SELECT * FROM " . TABLE_PREFIX . "bbcode WHERE (bbcodetag = '" . $db->escape_string($vbulletin->GPC['bbcodetag']) . "' AND twoparams = " . $vbulletin->GPC['twoparams'] . ") AND bbcodeid <> " . $vbulletin->GPC['bbcodeid']))
A few other small discrepancies, but that's the biggest one and it's keeping me from installing right now
V3.8.2