1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-25 09:11:29 +00:00

tag setting rpc: use JSON

This commit is contained in:
Andrew Dolgov
2010-11-29 14:21:28 +03:00
parent 8eb592ec71
commit ddcbbea2de
2 changed files with 15 additions and 26 deletions

View File

@@ -364,6 +364,7 @@
}
if ($subop == "setArticleTags") {
header("Content-Type: text/plain");
global $memcache;
@@ -425,9 +426,8 @@
$tags_str = format_tags_string(get_article_tags($link, $id), $id);
print "<rpc-reply>
<tags-str id=\"$id\"><![CDATA[$tags_str]]></tags-str>
</rpc-reply>";
print json_encode(array("tags_str" => array("id" => $id,
"content" => $tags_str)));
return;
}