aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2017-06-14 23:21:47 +0200
committerMario Vavti <mario@mariovavti.com>2017-06-14 23:21:47 +0200
commitec74b5700024063ea8bd3fb8d644df881c704fb3 (patch)
tree7647481dfd5a0d1caa20897c80e5c47b192241e6
parent3f488e98421597749a7fc8af35e48d0b11f980ae (diff)
downloadvolse-hubzilla-ec74b5700024063ea8bd3fb8d644df881c704fb3.tar.gz
volse-hubzilla-ec74b5700024063ea8bd3fb8d644df881c704fb3.tar.bz2
volse-hubzilla-ec74b5700024063ea8bd3fb8d644df881c704fb3.zip
re-add type since the actual culprit was the X-ZOT prefix
-rw-r--r--include/feedutils.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/feedutils.php b/include/feedutils.php
index d1c7a5c64..eb2d3a6e1 100644
--- a/include/feedutils.php
+++ b/include/feedutils.php
@@ -1505,7 +1505,7 @@ function atom_entry($item, $type, $author, $owner, $comment = false, $cid = 0, $
if(($item['parent'] != $item['id']) || ($item['parent_mid'] !== $item['mid']) || (($item['thr_parent'] !== '') && ($item['thr_parent'] !== $item['mid']))) {
$parent_item = (($item['thr_parent']) ? $item['thr_parent'] : $item['parent_mid']);
- $o .= '<thr:in-reply-to ref="' . xmlify($parent_item) . '" href="' . xmlify($item['plink']) . '" />' . "\r\n";
+ $o .= '<thr:in-reply-to ref="' . xmlify($parent_item) . '" " type="text/html" href="' . xmlify($item['plink']) . '" />' . "\r\n";
}
if(activity_match($item['obj_type'],ACTIVITY_OBJ_EVENT) && activity_match($item['verb'],ACTIVITY_POST)) {