diff options
author | friendica <info@friendica.com> | 2015-01-08 16:02:15 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-01-08 16:02:15 -0800 |
commit | aa490a39bb32aed4f8ea4ffcf7134b900d245b5c (patch) | |
tree | 5d3e7dab41fe12b3aef7901aaa8cd2fafa93005b /include/items.php | |
parent | 1a67c55f28152732926689726149f22a3b532ae5 (diff) | |
download | volse-hubzilla-aa490a39bb32aed4f8ea4ffcf7134b900d245b5c.tar.gz volse-hubzilla-aa490a39bb32aed4f8ea4ffcf7134b900d245b5c.tar.bz2 volse-hubzilla-aa490a39bb32aed4f8ea4ffcf7134b900d245b5c.zip |
include channel clones in PM deliveries (also some whitespace edits)
Diffstat (limited to 'include/items.php')
-rwxr-xr-x | include/items.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php index c488e1953..e2534528a 100755 --- a/include/items.php +++ b/include/items.php @@ -3183,7 +3183,7 @@ function mail_store($arr) { $arr['account_id'] = ((x($arr,'account_id')) ? intval($arr['account_id']) : 0); $arr['mid'] = ((x($arr,'mid')) ? notags(trim($arr['mid'])) : random_string()); $arr['from_xchan'] = ((x($arr,'from_xchan')) ? notags(trim($arr['from_xchan'])) : ''); - $arr['to_xchan'] = ((x($arr,'to_xchan')) ? notags(trim($arr['to_xchan'])) : ''); + $arr['to_xchan'] = ((x($arr,'to_xchan')) ? notags(trim($arr['to_xchan'])) : ''); $arr['created'] = ((x($arr,'created') !== false) ? datetime_convert('UTC','UTC',$arr['created']) : datetime_convert()); $arr['expires'] = ((x($arr,'expires') !== false) ? datetime_convert('UTC','UTC',$arr['expires']) : NULL_DATE); $arr['title'] = ((x($arr,'title')) ? notags(trim($arr['title'])) : ''); |