1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-24 11:56:36 +02:00

remove label: do not reload headlines

This commit is contained in:
Andrew Dolgov 2009-01-18 16:29:25 +01:00
parent 9bf3f101cc
commit 1c9c602534
2 changed files with 22 additions and 2 deletions

View File

@ -431,14 +431,33 @@
$label = label_find_caption($link, $label_id, $_SESSION["uid"]);
print "<rpc-reply>";
print "<info-for-headlines>";
if ($label) {
foreach ($ids as $id) {
label_remove_article($link, $id, $label, $_SESSION["uid"]);
print "<entry id=\"$id\"><![CDATA[";
$labels = get_article_labels($link, $id, $_SESSION["uid"]);
foreach ($labels as $l) {
print "<span class='hlLabelRef'>".$l[1]."</span>";
}
print "]]></entry>";
}
}
print "<rpc-reply>OK</rpc-reply>";
print "</info-for-headlines>";
print "<counters>";
getAllCounters($link, $omode);
print "</counters>";
print "</rpc-reply>";
return;
}

View File

@ -873,7 +873,8 @@ function selectionRemoveLabel(id) {
new Ajax.Request(query, {
onComplete: function(transport) {
viewCurrentFeed();
show_labels_in_headlines(transport);
all_counters_callback2(transport);
} });
}