array_unique didn't have a second argument before PHP 5.2.9

This commit is contained in:
Friendika 2010-11-26 02:38:41 -08:00
parent e15b1a8755
commit 1cd20e1757
1 changed files with 3 additions and 3 deletions

View File

@ -138,11 +138,11 @@
logger('notifier: url_recipients' . print_r($url_recipients,true));
$conversants = array_unique($conversants,SORT_NUMERIC);
$conversants = array_unique($conversants);
$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_unique(array_merge($recipients,$allow_people,$allow_groups));
$deny = array_unique(array_merge($deny_people,$deny_groups));
$recipients = array_diff($recipients,$deny);
$conversant_str = dbesc(implode(', ',$conversants));