got the args to array unshift backwards
darcs-hash:20080716030022-84dde-d24e4881e143163031a7b6c077d3eed77a58b579.gz
This commit is contained in:
parent
225208e634
commit
1e9fabbfa3
|
@ -877,7 +877,7 @@ function common_save_replies($notice) {
|
||||||
# XXX: is there another way to make an array copy?
|
# XXX: is there another way to make an array copy?
|
||||||
$names = array_merge($match[1], array());
|
$names = array_merge($match[1], array());
|
||||||
if ($tname) {
|
if ($tname) {
|
||||||
array_unshift($tname, $names);
|
array_unshift($names, $tname);
|
||||||
}
|
}
|
||||||
$sender = Profile::staticGet($notice->profile_id);
|
$sender = Profile::staticGet($notice->profile_id);
|
||||||
# store replied only for first @ (what user/notice what the reply directed,
|
# store replied only for first @ (what user/notice what the reply directed,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user