From a98ffa366b62f1fda42292e2dfd10cd466437d71 Mon Sep 17 00:00:00 2001 From: Brian Federle Date: Wed, 30 Nov 2011 12:00:10 -0800 Subject: [PATCH] Fix specify VLan checkbox value --- ui/scripts/configuration.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ui/scripts/configuration.js b/ui/scripts/configuration.js index 5cbc6db6a3a..2df36dd1d5a 100644 --- a/ui/scripts/configuration.js +++ b/ui/scripts/configuration.js @@ -887,6 +887,12 @@ return key; }).join(','); + if (inputData['specifyVlan'] == 'on') { + inputData['specifyVlan'] = true; + } else { + inputData['specifyVlan'] = false; + } + // Make service provider map var serviceProviderIndex = 0; $.each(services, function(key, value) {