aboutsummaryrefslogtreecommitdiffstats
path: root/include/delivery.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-02-24 20:03:13 -0800
committerfriendica <info@friendica.com>2012-02-24 20:03:13 -0800
commitf5c5da742da1154c26277df7ff86eebea6ffe049 (patch)
treed58a541eb7a0a25a6a0771194b339a16e628f75b /include/delivery.php
parentb95e3ac496b48e1e515d87a3dfadb46ce0977d3d (diff)
downloadvolse-hubzilla-f5c5da742da1154c26277df7ff86eebea6ffe049.tar.gz
volse-hubzilla-f5c5da742da1154c26277df7ff86eebea6ffe049.tar.bz2
volse-hubzilla-f5c5da742da1154c26277df7ff86eebea6ffe049.zip
attribution issue - don't take author name from contact if available from item.
Diffstat (limited to 'include/delivery.php')
-rwxr-xr-xinclude/delivery.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/delivery.php b/include/delivery.php
index 677d89388..cbf602a0b 100755
--- a/include/delivery.php
+++ b/include/delivery.php
@@ -272,10 +272,10 @@ function delivery_run($argv, $argc){
if($normal_mode) {
if($item_id == $item['id'] || $item['id'] == $item['parent'])
- $atom .= atom_entry($item,'text',$item_contact,$owner,true);
+ $atom .= atom_entry($item,'text',null,$owner,true);
}
else
- $atom .= atom_entry($item,'text',$item_contact,$owner,true);
+ $atom .= atom_entry($item,'text',null,$owner,true);
}
@@ -363,7 +363,7 @@ function delivery_run($argv, $argc){
continue;
if(($top_level) && ($public_message) && ($item['author-link'] === $item['owner-link']) && (! $expire))
- $slaps[] = atom_entry($item,'html',$item_contact,$owner,true);
+ $slaps[] = atom_entry($item,'html',null,$owner,true);
}
logger('notifier: slapdelivery: ' . $contact['name']);