1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-24 13:01:28 +00:00

some searchbox focus workarouns, content hash checking is optional now

This commit is contained in:
Andrew Dolgov
2005-08-25 15:12:10 +01:00
parent da61567a39
commit 36bf74967c
4 changed files with 11 additions and 2 deletions

View File

@@ -261,7 +261,9 @@
}
$result = pg_query("SELECT count(id) AS total_entries
FROM ttrss_entries WHERE feed_id = '$feed'");
FROM ttrss_entries WHERE
$search_query_part
feed_id = '$feed'");
$total_entries = pg_fetch_result($result, 0, "total_entries");