skip trying to come up with an intelligent way to decide what photos should get a status post - leave it manual.

This commit is contained in:
friendica 2015-03-11 00:21:57 -07:00
parent 844b2ae587
commit 0014cf4ff2
2 changed files with 2 additions and 20 deletions

View File

@ -34,29 +34,11 @@ function photo_upload($channel, $observer, $args) {
$album = datetime_convert('UTC',date_default_timezone_get(),'now', 'Y-m'); $album = datetime_convert('UTC',date_default_timezone_get(),'now', 'Y-m');
} }
/** if(intval($args['visible']) || $args['visible'] === 'true')
*
* We create a wall item for every photo, but we don't want to
* overwhelm the data stream with a hundred newly uploaded photos.
* So we will make the first photo uploaded to this album in the last several hours
* visible by default, the rest will become visible over time when and if
* they acquire comments, likes, dislikes, and/or tags
*
*/
$r = q("SELECT * FROM photo WHERE album = '%s' AND uid = %d AND created > %s - INTERVAL %s ",
dbesc($album),
intval($channel_id),
db_utcnow(), db_quoteinterval('3 HOUR')
);
if((! $r) || ($album == t('Profile Photos')))
$visible = 1; $visible = 1;
else else
$visible = 0; $visible = 0;
if(intval($args['visible']) || $args['visible'] === 'true')
$visible = 1;
$str_group_allow = perms2str(((is_array($args['group_allow'])) ? $args['group_allow'] : explode(',',$args['group_allow']))); $str_group_allow = perms2str(((is_array($args['group_allow'])) ? $args['group_allow'] : explode(',',$args['group_allow'])));
$str_contact_allow = perms2str(((is_array($args['contact_allow'])) ? $args['contact_allow'] : explode(',',$args['contact_allow']))); $str_contact_allow = perms2str(((is_array($args['contact_allow'])) ? $args['contact_allow'] : explode(',',$args['contact_allow'])));
$str_group_deny = perms2str(((is_array($args['group_deny'])) ? $args['group_deny'] : explode(',',$args['group_deny']))); $str_group_deny = perms2str(((is_array($args['group_deny'])) ? $args['group_deny'] : explode(',',$args['group_deny'])));

View File

@ -1 +1 @@
2015-03-10.967 2015-03-11.968