diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-08-20 14:33:15 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-08-20 14:33:15 -0700 |
commit | 709c86b2daec32ae0d5d6d0e7f88b8607e02edba (patch) | |
tree | 2975e62aebdda560502e3e2454153020e6377db6 /include/notifier.php | |
parent | 82174bbfa8ae45cebd75efbf597abf8623caa4b7 (diff) | |
download | volse-hubzilla-709c86b2daec32ae0d5d6d0e7f88b8607e02edba.tar.gz volse-hubzilla-709c86b2daec32ae0d5d6d0e7f88b8607e02edba.tar.bz2 volse-hubzilla-709c86b2daec32ae0d5d6d0e7f88b8607e02edba.zip |
added location tagging
Diffstat (limited to 'include/notifier.php')
-rw-r--r-- | include/notifier.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/notifier.php b/include/notifier.php index ff18dd9b4..d00ef54f4 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -176,7 +176,7 @@ $item['created'] . '+00:00' , 'Y-m-d\TH:i:s\Z')), '$updated' => xmlify(datetime_convert('UTC', 'UTC', $item['edited'] . '+00:00' , 'Y-m-d\TH:i:s\Z')), - '$content' =>xmlify($item['body']), + '$content' => xmlify($item['body']), '$parent_id' => xmlify($item['parent-uri']), '$comment_allow' => 0 )); @@ -209,6 +209,7 @@ $item['created'] . '+00:00' , 'Y-m-d\TH:i:s\Z')), '$updated' => xmlify(datetime_convert('UTC', 'UTC', $item['edited'] . '+00:00' , 'Y-m-d\TH:i:s\Z')), + '$location' => xmlify($item['location']), '$content' =>xmlify($item['body']), '$comment_allow' => (($item['last-child'] && strlen($contact['dfrn-id'])) ? 1 : 0) )); |