Fix introductions notifications links
This commit is contained in:
parent
18fd86f51e
commit
7529fc61dd
1 changed files with 5 additions and 5 deletions
|
@ -132,6 +132,11 @@ function notifications_content(App $a)
|
||||||
|
|
||||||
$notif_tpl = get_markup_template('notifications.tpl');
|
$notif_tpl = get_markup_template('notifications.tpl');
|
||||||
|
|
||||||
|
$notif_show_lnk = [
|
||||||
|
'href' => ($show ? 'notifications/' . $notifs['ident'] : 'notifications/' . $notifs['ident'] . '?show=all' ),
|
||||||
|
'text' => ($show ? L10n::t('Show unread') : L10n::t('Show all')),
|
||||||
|
];
|
||||||
|
|
||||||
// Process the data for template creation
|
// Process the data for template creation
|
||||||
if (defaults($notifs, 'ident', '') === 'introductions') {
|
if (defaults($notifs, 'ident', '') === 'introductions') {
|
||||||
$sugg = get_markup_template('suggestions.tpl');
|
$sugg = get_markup_template('suggestions.tpl');
|
||||||
|
@ -303,11 +308,6 @@ function notifications_content(App $a)
|
||||||
$notif_nocontent = L10n::t('No more %s notifications.', $notifs['ident']);
|
$notif_nocontent = L10n::t('No more %s notifications.', $notifs['ident']);
|
||||||
}
|
}
|
||||||
|
|
||||||
$notif_show_lnk = [
|
|
||||||
'href' => ($show ? 'notifications/' . $notifs['ident'] : 'notifications/' . $notifs['ident'] . '?show=all' ),
|
|
||||||
'text' => ($show ? L10n::t('Show unread') : L10n::t('Show all')),
|
|
||||||
];
|
|
||||||
|
|
||||||
$o .= replace_macros($notif_tpl, [
|
$o .= replace_macros($notif_tpl, [
|
||||||
'$notif_header' => $notif_header,
|
'$notif_header' => $notif_header,
|
||||||
'$tabs' => $tabs,
|
'$tabs' => $tabs,
|
||||||
|
|
Loading…
Reference in a new issue