1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-22 18:50:08 +03:00

Sunstone: Fix IP_end parameter when creating VNet

(cherry picked from commit f14c08feb41980dd21617d842e42ba198f4f85f9)
This commit is contained in:
Hector Sanjuan 2012-01-05 18:16:46 +01:00 committed by Ruben S. Montero
parent 61ad2c0c08
commit 342380b4c2

View File

@ -802,7 +802,7 @@ function setupCreateVNetDialog() {
if (ip_start.length)
network_json["vnet"]["ip_start"] = ip_start;
if (ip_end.length)
network_json["vnet"]["ip_start"] = ip_end;
network_json["vnet"]["ip_end"] = ip_end;
};
};