Quote:
Originally Posted by Action-N
As you can see from the error, it's trying to grab the information out of "vb3vbgarage_images ". Not knowing if this is a table prefix I'd just do a search for this code an check/ fix that line. I don't use a prefix so maybe this mod doesn't work with prefixes. In the mean time just do a search for "ORDER BY vbgarage_images.vbgarageid DESC" an that should find the above problem query.
|
This section is in INDEX.php
PHP Code:
/ START VBGARAGE HACK
// ### VBGARAGE #########################################################
$result_latest = $DB_site->query("
SELECT vbgarage_images.*
FROM " . TABLE_PREFIX . "vbgarage_images
ORDER BY vbgarage_images.vbgarageid DESC
LIMIT 5
");
while ($latest = $DB_site->fetch_Array($result_latest))
{
eval('$latestbits .= "' . fetch_template('vbgarage_latestbits') . '";');
}
$DB_site->free_result($result_latest);
// END VBGARAGE HACK
and this section is in VBGARAGE.PHP
PHP Code:
}
$result_latest = $DB_site->query("
SELECT * FROM " . TABLE_PREFIX . "vbgarage_images ORDER BY vbgarageid DESC LIMIT 5
");
while ($latest = $DB_site->fetch_Array($result_latest))
{