mirror of
https://github.com/friendica/friendica
synced 2024-11-13 01:42:59 +00:00
ping.php performance: fix typo
This commit is contained in:
parent
ba24b1b651
commit
61afd71897
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ function ping_init(&$a) {
|
||||||
// Find out how unseen network posts are spread across groups
|
// Find out how unseen network posts are spread across groups
|
||||||
$group_counts = groups_count_unseen();
|
$group_counts = groups_count_unseen();
|
||||||
if (dbm::is_result($group_counts)) {
|
if (dbm::is_result($group_counts)) {
|
||||||
foreach ($groups_counts as $group_count) {
|
foreach ($group_counts as $group_count) {
|
||||||
if ($group_count['count'] > 0) {
|
if ($group_count['count'] > 0) {
|
||||||
$groups_unseen[] = $group_count;
|
$groups_unseen[] = $group_count;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue