show all subscribed feeds with scrollbar in user details

This commit is contained in:
Andrew Dolgov 2005-12-29 16:53:57 +01:00
parent 4154a4158f
commit 9b3e2cc74c
2 changed files with 8 additions and 2 deletions

View File

@ -3666,9 +3666,9 @@
print "<h1>Subscribed feeds</h1>";
$result = db_query($link, "SELECT id,title,site_url FROM ttrss_feeds
WHERE owner_uid = '$uid' ORDER BY title LIMIT 20");
WHERE owner_uid = '$uid' ORDER BY title");
print "<ul class=\"nomarks\">";
print "<ul class=\"userFeedList\">";
while ($line = db_fetch_assoc($result)) {

View File

@ -916,3 +916,9 @@ span.groupPrompt {
font-size : x-small;
color : #505050;
}
ul.userFeedList {
height : 300px;
overflow : auto;
list-style-type : none;
}