Merge pull request #2941 from Hypolite/improvement/ping-php-json

ping.php performance: fix typo
This commit is contained in:
Michael Vogel 2016-11-19 21:40:31 +01:00 committed by GitHub
커밋 67c1a20ed0
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제

파일 보기

@ -83,7 +83,7 @@ function ping_init(&$a) {
// Find out how unseen network posts are spread across groups
$group_counts = groups_count_unseen();
if (dbm::is_result($group_counts)) {
foreach ($groups_counts as $group_count) {
foreach ($group_counts as $group_count) {
if ($group_count['count'] > 0) {
$groups_unseen[] = $group_count;
}