diff --git a/pandora_console/include/ajax/map.ajax.php b/pandora_console/include/ajax/map.ajax.php index 6d54e7475f..d572690012 100644 --- a/pandora_console/include/ajax/map.ajax.php +++ b/pandora_console/include/ajax/map.ajax.php @@ -289,7 +289,17 @@ if (is_ajax ()) { $table->data[3][0] = __('Height'); $table->data[3][1] = $node_style['height']; $table->data[4][0] = __('Shape'); - $table->data[4][1] = $node_style['shape']; + $table->data[4][1] = html_print_select(array( + 'circle' => __('Circle'), + 'square' => __('Square'), + 'rhombus' => __('Rhombus')), 'shape', '', + 'javascript:', '', 0, true) . ' ' . + '' . + '' . + ''; ui_toggle(html_print_table($table, true), __('Node options'), __('Node options'), true);