This commit is contained in:
friendica
2013-03-10 18:45:58 -07:00
parent 0d504715c1
commit 952b2ef2ab
18 changed files with 5431 additions and 7056 deletions

View File

@@ -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;
}