X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fphoto.php;h=fab34a62f03b395f33749d12e5cbb7b0e2634319;hb=ba158dfeb1eec1025c1af163077b1dd44238ea5c;hp=7783b6a256f5a4c723f1454dd4b424d458775174;hpb=de75d8ca7f3179fabcec1c954b92bce10080bfba;p=friendica.git diff --git a/mod/photo.php b/mod/photo.php index 7783b6a256..fab34a62f0 100644 --- a/mod/photo.php +++ b/mod/photo.php @@ -120,16 +120,16 @@ function photo_init(&$a) { $public = ($r[0]['allow_cid'] == '') AND ($r[0]['allow_gid'] == '') AND ($r[0]['deny_cid'] == '') AND ($r[0]['deny_gid'] == ''); if(count($r)) { - $resolution = $r[0]['scale']; + $resolution = $r[0]['scale']; $data = $r[0]['data']; $mimetype = $r[0]['type']; - } - else { - // The picure exists. We already checked with the first query. - // obviously, this is not an authorized viev! - $data = file_get_contents('images/nosign.jpg'); - $mimetype = 'image/jpeg'; - $prvcachecontrol = true; + } else { + // The picure exists. We already checked with the first query. + // obviously, this is not an authorized viev! + $data = file_get_contents('images/nosign.jpg'); + $mimetype = 'image/jpeg'; + $prvcachecontrol = true; + $public = false; } } }