summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-09-05 07:04:02 +0100
committerAndrew Dolgov <[email protected]>2005-09-05 07:04:02 +0100
commitf175937c783eb55371fd7aee2ff338ce2aff5aa8 (patch)
tree941a3cb7228b479d8d2c23022285bf7a73fbe339 /functions.php
parentbdd69ee96c669309bbedfbf9be14efede127786d (diff)
fix typo in search, add view limiting dropbox, change default headlines height to 10%
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/functions.php b/functions.php
index d572ee780..e6ef6589a 100644
--- a/functions.php
+++ b/functions.php
@@ -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";