1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-26 20:41:29 +00:00

force timestamp hack to most main operations

This commit is contained in:
Andrew Dolgov
2007-02-07 18:01:35 +01:00
parent e3a21a251c
commit 86173d9a95
3 changed files with 11 additions and 5 deletions

View File

@@ -129,6 +129,10 @@ function view(id, feed_id, skip_history) {
selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false);
markHeadline(active_post_id);
var date = new Date();
var timestamp = Math.round(date.getTime() / 1000);
query = query + "&ts=" + timestamp
xmlhttp.open("GET", query, true);
xmlhttp.onreadystatechange=article_callback;
xmlhttp.send(null);