Zeile 937 | Zeile 937 |
---|
{ $event_errors = ''; $mybb->input['calendar'] = $event['cid'];
|
{ $event_errors = ''; $mybb->input['calendar'] = $event['cid'];
|
$name = htmlspecialchars_uni($event['name']);
| $name = $event['name'];
|
$description = htmlspecialchars_uni($event['description']); if($event['private'] == 1) {
| $description = htmlspecialchars_uni($event['description']); if($event['private'] == 1) {
|
Zeile 2548 | Zeile 2548 |
---|
// Is the current day if($day.$calendar_month.$year == $today && $month == $calendar_month) {
|
// Is the current day if($day.$calendar_month.$year == $today && $month == $calendar_month) {
|
$day_class = "trow_sep";
| eval("\$day_bits .= \"".$templates->get("calendar_weekrow_currentday")."\";");
|
} // Not in this month else if($in_month == 0) {
|
} // Not in this month else if($in_month == 0) {
|
$day_class = "trow1";
| eval("\$day_bits .= \"".$templates->get("calendar_weekrow_day")."\";");
|
} // Just a normal day in this month else {
|
} // Just a normal day in this month else {
|
$day_class = "trow2";
| eval("\$day_bits .= \"".$templates->get("calendar_weekrow_thismonth")."\";");
|
}
|
}
|
eval("\$day_bits .= \"".$templates->get("calendar_weekrow_day")."\";");
| |
$day_birthdays = $day_events = ""; ++$day; }
| $day_birthdays = $day_events = ""; ++$day; }
|