diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-10-19 20:52:05 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-10-19 20:52:05 -0700 |
commit | a8e4ec7801b5ca8c986febed1f95124b412e92f9 (patch) | |
tree | 02dde668c26d5b932997139537c99de9ca7242ea /include/notifier.php | |
parent | 81835acc36f17939b9e202cec2ff8981ca03536b (diff) | |
download | volse-hubzilla-a8e4ec7801b5ca8c986febed1f95124b412e92f9.tar.gz volse-hubzilla-a8e4ec7801b5ca8c986febed1f95124b412e92f9.tar.bz2 volse-hubzilla-a8e4ec7801b5ca8c986febed1f95124b412e92f9.zip |
use browser geolocation when desired
Diffstat (limited to 'include/notifier.php')
-rw-r--r-- | include/notifier.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/notifier.php b/include/notifier.php index db95c3aae..99b385996 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -209,6 +209,7 @@ '$published' => xmlify(datetime_convert('UTC', 'UTC', $item['created'] . '+00:00' , ATOM_TIME)), '$updated' => xmlify(datetime_convert('UTC', 'UTC', $item['edited'] . '+00:00' , ATOM_TIME)), '$location' => xmlify($item['location']), + '$coord' => xmlify($item['coord']), '$type' => 'text', '$verb' => xmlify($verb), '$actobj' => $actobj, @@ -249,6 +250,7 @@ '$published' => xmlify(datetime_convert('UTC', 'UTC', $item['created'] . '+00:00' , ATOM_TIME)), '$updated' => xmlify(datetime_convert('UTC', 'UTC', $item['edited'] . '+00:00' , ATOM_TIME)), '$location' => xmlify($item['location']), + '$coord' => xmlify($item['coord']), '$type' => 'text', '$verb' => xmlify($verb), '$actobj' => $actobj, @@ -269,6 +271,7 @@ '$content' => xmlify($item['body']), '$alt' => xmlify($a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id']), '$location' => xmlify($item['location']), + '$coord' => xmlify($item['coord']), '$type' => 'text', '$verb' => xmlify($verb), '$actobj' => $actobj, |