There is a small bug in it. In the recent articles section the date and author are not displaying.
search for:
PHP Code:
eval("\$catlistbit .= \"".gettemplate('vbArticles_catbit')."\";");
}
}
$asb = $DB_site->query("SELECT * FROM vbArticles_content WHERE valid='1' ORDER BY artid DESC LIMIT 5");
if ($DB_site->num_rows($asb)) {
while ($myrow=$DB_site->fetch_array($asb)) {
$artid=$myrow["artid"];
$title=$myrow["title"];
$byline=$myrow["byline"];
eval("\$top5listbit .= \"".gettemplate('vbArticles_artbit')."\";");
}
}
replace it with:
PHP Code:
eval("\$catlistbit .= \"".gettemplate('vbArticles_catbit')."\";");
}
}
$asb = $DB_site->query("SELECT * FROM vbArticles_content WHERE valid='1' ORDER BY artid DESC LIMIT 5");
if ($DB_site->num_rows($asb)) {
while ($myrow=$DB_site->fetch_array($asb)) {
$artid=$myrow["artid"];
$title=$myrow["title"];
$byline=$myrow["byline"];
$author=$myrow["author"];
$date=$myrow["date"];
eval("\$top5listbit .= \"".gettemplate('vbArticles_artbit')."\";");
}
}
Thanks
Kars