diff options
author | Mario Vavti <mario@mariovavti.com> | 2019-04-30 10:47:48 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2019-04-30 10:47:48 +0200 |
commit | 0b062d0b8ae89b40b4e036f874f6af3780c30451 (patch) | |
tree | dd37934714db3344ce7770c14755f7a62c92c25b /Zotlabs/Module/Ping.php | |
parent | 9cc1eff15cae3884458a6f7171140f2780665ff7 (diff) | |
download | volse-hubzilla-0b062d0b8ae89b40b4e036f874f6af3780c30451.tar.gz volse-hubzilla-0b062d0b8ae89b40b4e036f874f6af3780c30451.tar.bz2 volse-hubzilla-0b062d0b8ae89b40b4e036f874f6af3780c30451.zip |
select event by event_hash instead of item_id
Diffstat (limited to 'Zotlabs/Module/Ping.php')
-rw-r--r-- | Zotlabs/Module/Ping.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Ping.php b/Zotlabs/Module/Ping.php index f0c3a8821..3dabe0f7b 100644 --- a/Zotlabs/Module/Ping.php +++ b/Zotlabs/Module/Ping.php @@ -447,7 +447,7 @@ class Ping extends \Zotlabs\Web\Controller { $when = day_translate(datetime_convert('UTC', (($rr['adjust']) ? date_default_timezone_get() : 'UTC'), $rr['dtstart'], $bd_format)) . (($today) ? ' ' . t('[today]') : ''); $result[] = array( - 'notify_link' => z_root() . '/cdav/calendar', /// @FIXME this takes you to an edit page and it may not be yours, we really want to just view the single event --> '/events/event/' . $rr['event_hash'], + 'notify_link' => z_root() . '/cdav/calendar/' . $rr['event_hash'], 'name' => $rr['xchan_name'], 'addr' => $rr['xchan_addr'], 'url' => $rr['xchan_url'], |