var ok = confirm(__("Rescore articles in selected feeds?"));
if (ok) {
- notify_progress("Rescoring selected feeds...");
+ notify_progress("Rescoring selected feeds...", true);
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=rescore&quiet=1&ids="+
param_escape(sel_rows.toString()), true);
var ok = confirm(__("Rescore all articles? This operation may take a lot of time."));
if (ok) {
- notify_progress("Rescoring feeds...");
+ notify_progress("Rescoring feeds...", true);
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=rescoreAll&quiet=1", true);
xmlhttp.onreadystatechange=notify_callback;