more array munging

darcs-hash:20080716031346-84dde-2aa160254fd80537ba89df2b39b4560c044d1bab.gz
This commit is contained in:
Evan Prodromou 2008-07-15 23:13:46 -04:00
parent f3409f4e70
commit af03429704
1 changed files with 1 additions and 4 deletions

View File

@ -875,10 +875,7 @@ function common_save_replies($notice) {
return true;
}
# XXX: is there another way to make an array copy?
$names = array_merge($match[1], array());
if ($tname) {
array_unshift($names, $tname);
}
$names = ($tname) ? array_unique(array_merge($match[1], array($tname))) : $match[1];
$sender = Profile::staticGet($notice->profile_id);
# store replied only for first @ (what user/notice what the reply directed,
# we assume first @ is it)