summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
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";