log less in expire items
This commit is contained in:
parent
79603e3146
commit
590f1d2b25
1 changed files with 1 additions and 6 deletions
|
@ -2733,15 +2733,12 @@ function item_expire($uid,$days) {
|
|||
$expire_photos = get_pconfig($uid, 'expire','photos');
|
||||
$expire_photos = (($expire_photos===false)?0:intval($expire_photos)); // default if not set: 0
|
||||
|
||||
logger('expire: # items=' . count($r) );
|
||||
logger("expire: items: $expire_items, notes: $expire_notes, photos: $expire_photos");
|
||||
logger('expire: # items=' . count($r). "; expire items: $expire_items, expire notes: $expire_notes, expire photos: $expire_photos");
|
||||
|
||||
foreach($r as $item) {
|
||||
|
||||
// Only expire posts, not photos and photo comments
|
||||
|
||||
logger('expire: item '.$item['type'].' id '.intval($item['id']).' "'.$item['body'].'" '.$item['resource-id']);
|
||||
|
||||
if($expire_photos==0 && strlen($item['resource-id']))
|
||||
continue;
|
||||
if($expire_notes==0 && $item['type']=='note')
|
||||
|
@ -2749,8 +2746,6 @@ function item_expire($uid,$days) {
|
|||
if($expire_items==0 && $item['type']!='note')
|
||||
continue;
|
||||
|
||||
logger('expire');
|
||||
|
||||
$r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s' WHERE `id` = %d LIMIT 1",
|
||||
dbesc(datetime_convert()),
|
||||
dbesc(datetime_convert()),
|
||||
|
|
Loading…
Reference in a new issue