allow the photo_rand widget to access photos from any channel (useful if the widget is used in sys-generated pages). You still need permission.

This commit is contained in:
friendica 2014-11-20 19:33:08 -08:00
parent 03a457ed83
commit f17ef6aa90

View File

@ -828,6 +828,10 @@ function widget_photo_rand($arr) {
else
$album = '';
$channel_id = 0;
if(array_key_exists('channel_id',$arr) && intval($arr['channel_id']))
$channel_id = intval($arr['channel_id']);
if(! $channel_id)
$channel_id = get_app()->profile_uid;
if(! $channel_id)
return '';