diff options
author | Olaf Conradi <oohlaf@gmail.com> | 2013-09-10 15:36:06 -0700 |
---|---|---|
committer | Olaf Conradi <oohlaf@gmail.com> | 2013-09-10 15:36:06 -0700 |
commit | 58490a4a8098430ed32d0483638d1c6ea3e7ac49 (patch) | |
tree | 1b5541866bc4b2943285b24844c4c1834cbf487e | |
parent | b304267a09c5f4a2c36a0f3ed0f2d2b81d4c3a5c (diff) | |
parent | 517baa86a3372f1bdb09f98a85c8f781365bcb1f (diff) | |
download | volse-hubzilla-58490a4a8098430ed32d0483638d1c6ea3e7ac49.tar.gz volse-hubzilla-58490a4a8098430ed32d0483638d1c6ea3e7ac49.tar.bz2 volse-hubzilla-58490a4a8098430ed32d0483638d1c6ea3e7ac49.zip |
Merge pull request #128 from oohlaf/fixes
No need to add name_updated twice in zfinger response
-rw-r--r-- | mod/zfinger.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mod/zfinger.php b/mod/zfinger.php index 320f0ca71..36c1cc493 100644 --- a/mod/zfinger.php +++ b/mod/zfinger.php @@ -130,7 +130,6 @@ function zfinger_init(&$a) { $ret['photo_updated'] = $e['xchan_photo_date']; $ret['url'] = $e['xchan_url']; $ret['connections_url']= (($e['xchan_connurl']) ? $e['xchan_connurl'] : z_root() . '/poco/' . $e['channel_address']); - $ret['name_updated'] = $e['xchan_name_date']; $ret['target'] = $ztarget; $ret['target_sig'] = $zsig; $ret['searchable'] = $searchable; @@ -250,4 +249,4 @@ function zfinger_init(&$a) { } json_return_and_die($ret); -}
\ No newline at end of file +} |