diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 17fe176bc9..5d2c4bf30b 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,9 @@ +2013-01-14 Juan Manuel Ramon + + * godmode/modules/manage_nc_groups.php: Parent row removed. + + Merged from branches. + 2013-01-14 Dario Rodriguez * extras/network_components.postgreSQL.sql, diff --git a/pandora_console/godmode/modules/manage_nc_groups.php b/pandora_console/godmode/modules/manage_nc_groups.php index e9e54a0f79..fd30ad0ab8 100644 --- a/pandora_console/godmode/modules/manage_nc_groups.php +++ b/pandora_console/godmode/modules/manage_nc_groups.php @@ -191,17 +191,15 @@ $groups = component_groups_get_groups_tree_recursive($groups_clean,0,0); $table->width = '98%'; $table->head = array (); $table->head[0] = __('Name'); -$table->head[1] = __('Parent'); -$table->head[2] = __('Action') . +$table->head[1] = __('Action') . html_print_checkbox('all_delete', 0, false, true, false, 'check_all_checkboxes();'); $table->style = array (); $table->style[0] = 'font-weight: bold'; $table->align = array (); -$table->align[2] = 'center'; +$table->align[1] = 'center'; $table->size = array (); -$table->size[0] = '50%'; -$table->size[1] = '40%'; -$table->size[2] = '80px'; +$table->size[0] = '80%'; +$table->size[1] = '50px'; $table->data = array (); $total_groups = db_get_all_rows_filter ('tnetwork_component_group', false, 'COUNT(*) AS total'); @@ -215,10 +213,8 @@ foreach ($groups as $group) { $tabulation = str_repeat('    ', $group['deep']); $data[0] = $tabulation . ''.$group['name'].''; - - $data[1] = network_components_get_group_name ($group['parent']); - - $data[2] = "" . html_print_image('images/cross.png', true, array('title' => __('Delete'))) . "" . html_print_checkbox_extended ('delete_multiple[]', $group['id_sg'], false, false, '', 'class="check_delete"', true);