diff options
author | friendica <info@friendica.com> | 2013-03-10 18:45:58 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-03-10 18:45:58 -0700 |
commit | 952b2ef2ab256d46d616db70edc42ffe640a5e9d (patch) | |
tree | 1bd9cb83a6beae2beb5ff30b1b26d604e7ccfc06 /mod/editpost.php | |
parent | 0d504715c1859276e919ddc6b236f946c783714f (diff) | |
download | volse-hubzilla-952b2ef2ab256d46d616db70edc42ffe640a5e9d.tar.gz volse-hubzilla-952b2ef2ab256d46d616db70edc42ffe640a5e9d.tar.bz2 volse-hubzilla-952b2ef2ab256d46d616db70edc42ffe640a5e9d.zip |
.
Diffstat (limited to 'mod/editpost.php')
-rw-r--r-- | mod/editpost.php | 7 |
1 files changed, 4 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; } |