1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-22 21:57:10 +00:00

sort tags in feedlist output, "technorati tag:" is stripped from tagname

This commit is contained in:
Andrew Dolgov
2005-11-18 13:59:26 +01:00
parent 1a7572cb27
commit 3b0948c4ab
2 changed files with 5 additions and 2 deletions

View File

@@ -403,6 +403,8 @@
foreach ($entry_tags as $tag) {
$tag = db_escape_string(strtolower($tag));
$tag = str_replace("technorati tag: ", "", $tag);
$result = db_query($link, "SELECT id FROM ttrss_tags
WHERE tag_name = '$tag' AND post_id = '$entry_id' AND
owner_uid = ".$_SESSION["uid"]." LIMIT 1");