diff options
Diffstat (limited to 'mod')
-rw-r--r-- | mod/editpost.php | 7 | ||||
-rw-r--r-- | mod/post.php | 1 | ||||
-rw-r--r-- | mod/zfinger.php | 6 |
3 files changed, 11 insertions, 3 deletions
diff --git a/mod/editpost.php b/mod/editpost.php index 43c71ca8a..1d7b7b6fb 100644 --- a/mod/editpost.php +++ b/mod/editpost.php @@ -18,13 +18,14 @@ function editpost_content(&$a) { return; } - $itm = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1", + $itm = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d and author_xchan = '%s' LIMIT 1", intval($post_id), - intval(local_user()) + intval(local_user()), + dbesc(get_observer_hash()) ); if(! count($itm)) { - notice( t('Item not found') . EOL); + notice( t('Item is not editable') . EOL); return; } diff --git a/mod/post.php b/mod/post.php index e5fa1a418..af08d3f98 100644 --- a/mod/post.php +++ b/mod/post.php @@ -261,6 +261,7 @@ function post_post(&$a) { } } + if($msgtype === 'refresh') { // remote channel info (such as permissions or photo or something) diff --git a/mod/zfinger.php b/mod/zfinger.php index 74353e8f9..48582b3d6 100644 --- a/mod/zfinger.php +++ b/mod/zfinger.php @@ -145,6 +145,12 @@ function zfinger_init(&$a) { // array of (verified) hubs this channel uses $ret['locations'] = array(); + + + + + + $x = zot_get_hubloc(array($e['channel_hash'])); if($x && count($x)) { foreach($x as $hub) { |