properly select next unread feed in feedlist when catching up
This commit is contained in:
parent
6b244a85a4
commit
1098687a22
1 changed files with 5 additions and 1 deletions
|
@ -289,7 +289,11 @@
|
|||
WHERE id = '$feed' AND owner_uid = ".$_SESSION["uid"]);
|
||||
}
|
||||
|
||||
print "<headlines id=\"$feed\" is_cat=\"$cat_view\"><![CDATA[";
|
||||
if (!$next_unread_feed) {
|
||||
print "<headlines id=\"$feed\" is_cat=\"$cat_view\"><![CDATA[";
|
||||
} else {
|
||||
print "<headlines id=\"$next_unread_feed\" is_cat=\"$cat_view\"><![CDATA[";
|
||||
}
|
||||
|
||||
$override_order = false;
|
||||
|
||||
|
|
Loading…
Reference in a new issue