summaryrefslogtreecommitdiff
path: root/httemplate/elements/select-areacode.html
diff options
context:
space:
mode:
authorivan <ivan>2011-08-10 05:22:34 +0000
committerivan <ivan>2011-08-10 05:22:34 +0000
commit8737dc99be5a9874c40f36d1420447253ee12c31 (patch)
treecc3adf5c4b80c874309f14fac6ae045a319fa555 /httemplate/elements/select-areacode.html
parentea32d409b7b41c178a3e839e5be00f2eec0c90ed (diff)
multiple DID provisioning, RT#13721
Diffstat (limited to 'httemplate/elements/select-areacode.html')
-rw-r--r--httemplate/elements/select-areacode.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/httemplate/elements/select-areacode.html b/httemplate/elements/select-areacode.html
index 453205c02..a302befc2 100644
--- a/httemplate/elements/select-areacode.html
+++ b/httemplate/elements/select-areacode.html
@@ -38,7 +38,9 @@
// blank the current phonenum too
for ( var i = what.form.<% $opt{'prefix'} %>phonenum.length; i >= 0; i-- )
what.form.<% $opt{'prefix'} %>phonenum.options[i] = null;
- opt(what.form.<% $opt{'prefix'} %>phonenum, '', 'Select phone number');
+ if ( what.form.<% $opt{'prefix'} %>phonenum.type != 'select-multiple' ) {
+ opt(what.form.<% $opt{'prefix'} %>phonenum, '', 'Select phone number');
+ }
% if ($opt{empty}) {
opt(what.form.<% $opt{'prefix'} %>areacode, '', '<% $opt{empty} %>');