summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/functions.js b/functions.js
index 09582feaf..4942b50cd 100644
--- a/functions.js
+++ b/functions.js
@@ -2285,6 +2285,9 @@ function dropbox_replace_options(elem, options) {
for (var i = 0; i < options.length; i++) {
var text = options[i].firstChild.nodeValue;
var value = options[i].getAttribute("value");
+
+ if (value == undefined) value = text;
+
var issel = options[i].getAttribute("selected") == "1";
var option = new Option(text, value, issel);