parent
2173ef5fb6
commit
c50e3a702a
@ -24,7 +24,7 @@ class Notifications {
|
||||
],
|
||||
'filter' => [
|
||||
'posts_label' => t('Show new posts only'),
|
||||
'name_label' => t('Filter by name')
|
||||
'name_label' => t('Filter by name or address')
|
||||
]
|
||||
];
|
||||
|
||||
@ -43,7 +43,7 @@ class Notifications {
|
||||
],
|
||||
'filter' => [
|
||||
'posts_label' => t('Show new posts only'),
|
||||
'name_label' => t('Filter by name')
|
||||
'name_label' => t('Filter by name or address')
|
||||
]
|
||||
];
|
||||
|
||||
@ -119,7 +119,7 @@ class Notifications {
|
||||
'label' => t('Forums'),
|
||||
'title' => t('Forums'),
|
||||
'filter' => [
|
||||
'name_label' => t('Filter by name')
|
||||
'name_label' => t('Filter by name or address')
|
||||
]
|
||||
];
|
||||
}
|
||||
@ -150,7 +150,7 @@ class Notifications {
|
||||
],
|
||||
'filter' => [
|
||||
'posts_label' => t('Show new posts only'),
|
||||
'name_label' => t('Filter by name')
|
||||
'name_label' => t('Filter by name or address')
|
||||
]
|
||||
];
|
||||
}
|
||||
|
@ -3421,7 +3421,7 @@ function get_forum_channels($uid) {
|
||||
|
||||
$sql_extra = (($xf) ? " and ( xchan_hash in (" . $xf . ") or xchan_pubforum = 1 ) " : " and xchan_pubforum = 1 ");
|
||||
|
||||
$r = q("select abook_id, xchan_hash, xchan_name, xchan_url, xchan_photo_s from abook left join xchan on abook_xchan = xchan_hash where xchan_deleted = 0 and abook_channel = %d and abook_pending = 0 and abook_ignored = 0 and abook_blocked = 0 and abook_archived = 0 $sql_extra order by xchan_name",
|
||||
$r = q("select abook_id, xchan_hash, xchan_name, xchan_url, xchan_addr, xchan_photo_s from abook left join xchan on abook_xchan = xchan_hash where xchan_deleted = 0 and abook_channel = %d and abook_pending = 0 and abook_ignored = 0 and abook_blocked = 0 and abook_archived = 0 $sql_extra order by xchan_name",
|
||||
intval($uid)
|
||||
);
|
||||
|
||||
|
@ -142,7 +142,7 @@
|
||||
</a>
|
||||
</div>
|
||||
<div id="nav-notifications-forums-template" rel="template">
|
||||
<a class="list-group-item clearfix notification notification-forum" href="{0}" title="{4}" data-b64mid="{7}" data-notify_id="{8}" data-thread_top="{9}" data-contact_name="{2}" data-contact_addr="{3}">
|
||||
<a class="list-group-item clearfix notification notification-forum" href="{0}" title="{4} - {3}" data-b64mid="{7}" data-notify_id="{8}" data-thread_top="{9}" data-contact_name="{2}" data-contact_addr="{3}">
|
||||
<span class="float-right badge badge-{{$notification.severity}}">{10}</span>
|
||||
<img class="menu-img-1" data-src="{1}">
|
||||
<span class="">{2}</span>
|
||||
|
Reference in New Issue
Block a user