support for selective output in forceUpdateAllFeeds
This commit is contained in:
parent
8823cd590f
commit
ab3f3f72f6
12
backend.php
12
backend.php
|
@ -72,7 +72,7 @@
|
||||||
|
|
||||||
$count = db_fetch_result($tmp_result, 0, "count");
|
$count = db_fetch_result($tmp_result, 0, "count");
|
||||||
|
|
||||||
print "<feed id=\"$id\" counter=\"$count\"/>";
|
print "<label id=\"$id\" counter=\"$count\"/>";
|
||||||
|
|
||||||
error_reporting (E_ERROR | E_WARNING | E_PARSE);
|
error_reporting (E_ERROR | E_WARNING | E_PARSE);
|
||||||
|
|
||||||
|
@ -313,10 +313,14 @@
|
||||||
if ($subop == "forceUpdateAllFeeds" || $subop == "updateAllFeeds") {
|
if ($subop == "forceUpdateAllFeeds" || $subop == "updateAllFeeds") {
|
||||||
update_all_feeds($link, true);
|
update_all_feeds($link, true);
|
||||||
|
|
||||||
|
$omode = $_GET["omode"];
|
||||||
|
|
||||||
|
if (!$omode) $omode = "tfl";
|
||||||
|
|
||||||
print "<rpc-reply>";
|
print "<rpc-reply>";
|
||||||
getLabelCounters($link);
|
if (strchr($omode, "l")) getLabelCounters($link);
|
||||||
getFeedCounters($link);
|
if (strchr($omode, "f")) getFeedCounters($link);
|
||||||
getTagCounters($link);
|
if (strchr($omode, "t")) getTagCounters($link);
|
||||||
print "</rpc-reply>";
|
print "</rpc-reply>";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue