diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-06-15 00:19:50 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-06-15 00:19:50 +0200 |
commit | 1f075d92bc4e47ae282f811d10c31cd6f09191a6 (patch) | |
tree | 7786bed424457e327f30b067bf0ef39c7446ac99 /include | |
parent | fe02665f54a2bd4746757348680a2cee439c2750 (diff) | |
download | volse-hubzilla-1f075d92bc4e47ae282f811d10c31cd6f09191a6.tar.gz volse-hubzilla-1f075d92bc4e47ae282f811d10c31cd6f09191a6.tar.bz2 volse-hubzilla-1f075d92bc4e47ae282f811d10c31cd6f09191a6.zip |
sigh... x-zot prefix slipped in again
Diffstat (limited to 'include')
-rw-r--r-- | include/feedutils.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/feedutils.php b/include/feedutils.php index c9c7522b1..02decca69 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="' . 'X-ZOT:' . xmlify($parent_item) . '" type="text/html" 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)) { |