view: fix article not being marked as read when not requested from client cache

This commit is contained in:
Andrew Dolgov 2011-08-03 12:32:30 +04:00
parent 68a57364f4
commit f7cffd2cfd
2 changed files with 4 additions and 2 deletions

View File

@ -227,10 +227,10 @@
$article = format_article($link, $id, false);
print $article['content'];
return;
} else {
catchupArticleById($link, $id, 0);
}
catchupArticleById($link, $id, 0);
if (!$_SESSION["bw_limit"]) {
foreach ($cids as $cid) {
if ($cid) {

View File

@ -324,6 +324,8 @@ function view(id) {
last_requested_article = id;
console.log(query);
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function(transport) {