issues uncovered testing combined item/file import

This commit is contained in:
zotlabs
2019-02-24 21:43:15 -08:00
parent 20e43311db
commit 1ff97754af
3 changed files with 5 additions and 5 deletions

View File

@@ -1207,8 +1207,8 @@ function channel_export_items_page($channel_id, $start, $finish, $page = 0, $lim
$r = q("select * from item where ( item_wall = 1 or item_type != %d ) and item_deleted = 0 and uid = %d and resource_type = '' and created >= '%s' and created <= '%s' order by created limit %d offset %d",
intval(ITEM_TYPE_POST),
intval($channel_id),
intval($start),
intval($finish),
dbesc($start),
dbesc($finish),
intval($limit),
intval($offset)
);