don't expire filed items

This commit is contained in:
friendica 2012-03-27 00:54:34 -07:00
parent daa036e34c
commit 20f9733250
1 changed files with 5 additions and 0 deletions

View File

@ -2936,6 +2936,11 @@ function item_expire($uid,$days) {
foreach($r as $item) {
// don't expire filed items
if(strpos($item['file'],'[') !== false)
continue;
// Only expire posts, not photos and photo comments
if($expire_photos==0 && strlen($item['resource-id']))