1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 23:55:56 +00:00

fix typo in search, add view limiting dropbox, change default headlines height to 10%

This commit is contained in:
Andrew Dolgov
2005-09-05 07:04:02 +01:00
parent bdd69ee96c
commit f175937c78
4 changed files with 37 additions and 8 deletions

View File

@@ -297,8 +297,8 @@
}
function print_select($id, $default, $values) {
print "<select id=\"$id\">";
function print_select($id, $default, $values, $attributes = "") {
print "<select id=\"$id\" $attributes>";
foreach ($values as $v) {
if ($v == $default)
$sel = " selected";