Add attendance check to event reminder

This commit is contained in:
Hypolite Petovan 2018-02-27 20:47:18 -05:00
commit f58d8f4108
3 changed files with 19 additions and 7 deletions

View file

@ -439,7 +439,7 @@ function networkFlatView(App $a, $update = 0)
if (!Config::get('theme', 'hide_eventlist')) {
$o .= Profile::getBirthdays();
$o .= Profile::getEvents();
$o .= Profile::getEventsReminderHTML();
}
}
@ -677,7 +677,7 @@ function networkThreadedView(App $a, $update = 0)
if (!$gid && !$cid && !$update && !Config::get('theme', 'hide_eventlist')) {
$o .= Profile::getBirthdays();
$o .= Profile::getEvents();
$o .= Profile::getEventsReminderHTML();
}
if ($datequery) {

View file

@ -352,7 +352,7 @@ function profile_content(App $a, $update = 0)
if ($is_owner && !$update && !Config::get('theme', 'hide_eventlist')) {
$o .= Profile::getBirthdays();
$o .= Profile::getEvents();
$o .= Profile::getEventsReminderHTML();
}