Fixed again the generation method when a new networkmap is update.

This commit is contained in:
mdtrooper 2016-05-09 11:54:25 +02:00
parent bb777aa47b
commit 529ea387b6
1 changed files with 2 additions and 2 deletions

View File

@ -167,7 +167,7 @@ if ($update_networkmap) {
$id_group = (int) get_parameter('id_group', 0);
$name = (string) get_parameter('name', "");
$description = (string) get_parameter('description', "");
if (enterprise_installed()) {
if (!enterprise_installed()) {
$generation_method = (int) get_parameter('generation_method', MAP_GENERATION_CIRCULAR);
}
$source_period = (int) get_parameter('source_period', 60 * 5);
@ -205,7 +205,7 @@ if ($update_networkmap) {
$values['source_period'] = $source_period;
$values['source_data'] = $source_data;
$values['source'] = $source;
if (enterprise_installed()) {
if (!enterprise_installed()) {
$values['generation_method'] = $generation_method;
}
$values['width'] = $width;