1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-23 09:31:29 +00:00

normalize title in front pages, fix filter query in update process

This commit is contained in:
Andrew Dolgov
2006-08-20 15:32:16 +01:00
parent 918e60e313
commit 52db9978a7
6 changed files with 14 additions and 9 deletions

View File

@@ -186,6 +186,8 @@ function scheduleFeedUpdate(force) {
xmlhttp.abort();
}
debug("REFETCH query: " + query_str);
if (xmlhttp_ready(xmlhttp)) {
xmlhttp.open("GET", query_str, true);
xmlhttp.onreadystatechange=refetch_callback;
@@ -538,7 +540,7 @@ function toggleDispRead() {
function parse_runtime_info(elem) {
var param = elem.firstChild;
debug("parse_runtime_info");
debug("parse_runtime_info: " + param);
while (param) {
var k = param.getAttribute("key");