CLOUDSTACK-5412: UI > Add Secondary Storage > provider dropdown > change option "SMB/cifs" to "SMB/CIFS".

This commit is contained in:
Jessica Wang 2013-12-09 16:50:20 -08:00
parent be67f5d17a
commit fe83dd621b
2 changed files with 4 additions and 4 deletions

View File

@ -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'

View File

@ -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'});
}