a wee typo there I think darkwizard in install.txt:
[code]<b>Upcoming events:</b></normalfont><?td></tr>[code]
change the ? to a /
also lifesourcerec, I found that changing the code a bit in todaysevent.php thusly at about line 27:
PHP Code:
if ($DB_site->num_rows($events) < 1) {
} else {
$todaysevents = "Upcoming events: <br/>";
while ($event=$DB_site->fetch_array($events)) {
means that if there are no events, nothing at all is displayed.
For a really minimal text result, I also removed all the <table> code around "$todaysevents" in forum home template, removed the <li> tags in the templates and terminated each line with <br/> so the result ends up as
Upcoming events:
2003-02-17: test event
2003-02-18: The ASE Animation night - Melbourne
2003-02-21: another test event
Good hack Dark_Wiz, much better than my own original version; now to get it working in vbhome(lite)!!