Quote:
Originally posted by Jakeman
i got the 'No Events Today' condition working. instructions for those that want to add this:
find:
Code:
while ($event=$DB_site->fetch_array($events)) {
if ($event[eventdate]==vbdate("Y-m-d",time())) {
$eventsubject=htmlspecialchars($event[subject]);
$todaysevents.="
<li><smallfont><b><a href=\"$bburl/calendar.php?s=$session[sessionhash]&action=getinfo&eventid=$event[eventid]\">$eventsubject</a></b></smallfont></li>";
}
}
after it add this:
Code:
if (!$todaysevents) {
$todaysevents="<li><smallfont><b>No Events Today</b></smallfont></li>";
}
i did it all by myself! woo woo!
|
Now, which file is this referring to?