1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 07:25:54 +00:00

rpc: move completeTags to article

This commit is contained in:
Andrew Dolgov
2013-04-02 14:53:36 +04:00
parent 5df8be5c0a
commit c83554bddd
3 changed files with 18 additions and 17 deletions

View File

@@ -284,4 +284,21 @@ class Article extends Handler_Protected {
"content" => $tags_str, "content_full" => $tags_str_full));
}
function completeTags() {
$search = db_escape_string($this->link, $_REQUEST["search"]);
$result = db_query($this->link, "SELECT DISTINCT tag_name FROM ttrss_tags
WHERE owner_uid = '".$_SESSION["uid"]."' AND
tag_name LIKE '$search%' ORDER BY tag_name
LIMIT 10");
print "<ul>";
while ($line = db_fetch_assoc($result)) {
print "<li>" . $line["tag_name"] . "</li>";
}
print "</ul>";
}
}