provide permission error vs "not found" for protected photos

This commit is contained in:
Friendika 2011-09-22 20:03:09 -07:00
parent fda9e6f252
commit a2b2318106
1 changed files with 9 additions and 1 deletions

View File

@ -984,6 +984,14 @@ function photos_content(&$a) {
);
if(! count($ph)) {
$ph = q("SELECT `id` FROM `photo` WHERE `uid` = %d AND `resource-id` = '%s'
LIMIT 1",
intval($owner_uid),
dbesc($datum)
);
if(count($ph))
notice( t('Permission denied. Access to this item may be restricted.'));
else
notice( t('Photo not available') . EOL );
return;
}