Merge pull request #4515 from MrPetovan/task/4513-hide-attendno-events
Add attendance check to event reminder
This commit is contained in:
commit
617ace38e4
3 changed files with 22 additions and 8 deletions
|
@ -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, $parent)
|
|||
|
||||
if (!$gid && !$cid && !$update && !Config::get('theme', 'hide_eventlist')) {
|
||||
$o .= Profile::getBirthdays();
|
||||
$o .= Profile::getEvents();
|
||||
$o .= Profile::getEventsReminderHTML();
|
||||
}
|
||||
|
||||
if ($datequery) {
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue