mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2026-01-03 08:49:15 +00:00
reworked preferences dialog, start work on post filters (schema updated)
This commit is contained in:
@@ -277,5 +277,17 @@
|
||||
|
||||
}
|
||||
|
||||
function print_select($id, $default, $values) {
|
||||
print "<select id=\"$id\">";
|
||||
foreach ($values as $v) {
|
||||
if ($v == $default)
|
||||
$sel = " selected";
|
||||
else
|
||||
$sel = "";
|
||||
|
||||
print "<option$sel>$v</option>";
|
||||
}
|
||||
print "</select>";
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user