From fe83dd621b9fff87e2191e9567e57acba6e8b01f Mon Sep 17 00:00:00 2001 From: Jessica Wang Date: Mon, 9 Dec 2013 16:50:20 -0800 Subject: [PATCH] CLOUDSTACK-5412: UI > Add Secondary Storage > provider dropdown > change option "SMB/cifs" to "SMB/CIFS". --- ui/scripts/system.js | 4 ++-- ui/scripts/zoneWizard.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ui/scripts/system.js b/ui/scripts/system.js index 3444fa9036f..7ccdfb00e78 100644 --- a/ui/scripts/system.js +++ b/ui/scripts/system.js @@ -14787,7 +14787,7 @@ var items = []; items.push({ id: "SMB", - description: "SMB/cifs" + description: "SMB/CIFS" }); args.response.success({ data: items @@ -16255,7 +16255,7 @@ description: 'NFS' }, { id: 'SMB', - description: 'SMB/cifs' + description: 'SMB/CIFS' }, { id: 'S3', description: 'S3' diff --git a/ui/scripts/zoneWizard.js b/ui/scripts/zoneWizard.js index 6c1c814929a..ec9431ddb5d 100755 --- a/ui/scripts/zoneWizard.js +++ b/ui/scripts/zoneWizard.js @@ -1523,7 +1523,7 @@ var items = []; items.push({ id: "SMB", - description: "SMB/cifs" + description: "SMB/CIFS" }); args.response.success({ data: items @@ -1845,7 +1845,7 @@ (2) Provider "SMB" which is handled by UI is not returned from "listStorageProviders&type=image" */ storageproviders.push({ id: 'NFS', description: 'NFS'}); - storageproviders.push({ id: 'SMB', description: 'SMB/cifs'}); + storageproviders.push({ id: 'SMB', description: 'SMB/CIFS'}); storageproviders.push({ id: 'S3', description: 'S3'}); storageproviders.push({ id: 'Swift', description: 'Swift'}); }