1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 23:05:56 +00:00

catchupArticlesById: return when there are no ids to catchup

This commit is contained in:
Andrew Dolgov
2010-03-24 13:28:20 +03:00
parent fa3317be48
commit ed41f171cb

View File

@@ -4069,6 +4069,7 @@
function catchupArticlesById($link, $ids, $cmode, $owner_uid = false) { function catchupArticlesById($link, $ids, $cmode, $owner_uid = false) {
if (!$owner_uid) $owner_uid = $_SESSION["uid"]; if (!$owner_uid) $owner_uid = $_SESSION["uid"];
if (count($ids) == 0) return;
$tmp_ids = array(); $tmp_ids = array();