aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-09-26 19:44:03 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-09-26 19:44:03 -0700
commit84d2ad8ebf0ae01f9bd193cd417fef9b2da3b680 (patch)
treeb6973b2db4a22b1fbc050f7511ad421d1e533a06 /include
parent34eedb503acad59d649f96d3250b40cc1c84047c (diff)
downloadvolse-hubzilla-84d2ad8ebf0ae01f9bd193cd417fef9b2da3b680.tar.gz
volse-hubzilla-84d2ad8ebf0ae01f9bd193cd417fef9b2da3b680.tar.bz2
volse-hubzilla-84d2ad8ebf0ae01f9bd193cd417fef9b2da3b680.zip
cleaned up ACL expansion to remove unwanted '0' elements
Diffstat (limited to 'include')
-rw-r--r--include/notifier.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/notifier.php b/include/notifier.php
index 2124c18e7..92f739549 100644
--- a/include/notifier.php
+++ b/include/notifier.php
@@ -115,7 +115,7 @@
$recipients = array_unique(array_merge($recipients,$allow_people,$allow_groups),SORT_NUMERIC);
$deny = array_unique(array_merge($deny_people,$deny_groups),SORT_NUMERIC);
$recipients = array_diff($recipients,$deny);
-
+
$conversant_str = dbesc(implode(', ',$conversants));
@@ -253,7 +253,7 @@
}
}
}
- $atom .= "</feed>\r\n";
+ $atom .= '</feed>' . "\r\n";
if($debugging)
echo $atom;