2010-04-23 Sergio Martin <sergio.martin@artica.es>

* operation/visual_console/index.php
       godmode/reporting/map_builder.php: Fixed the
        group all on tables



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2597 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
zarzuelo 2010-04-23 08:23:58 +00:00
parent ef620a871e
commit 7ea708f64b
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2010-04-23 Sergio Martin <sergio.martin@artica.es>
* operation/visual_console/index.php
godmode/reporting/map_builder.php: Fixed the
group all on tables
2010-04-23 Sergio Martin <sergio.martin@artica.es>
* godmode/alerts/alert_compounds.php

View File

@ -119,7 +119,7 @@ if (!$maps) {
$data[0] = '<a href="index.php?sec=gmap&sec2=godmode/reporting/visual_console_builder&tab=data&amp;action=edit&amp;id_visual_console='.$map['id'].'">'.$map['name'].'</a>';
$data[1] = print_group_icon ($map['id_group'], true).'&nbsp;';
$data[1] .= get_group_name ($map['id_group']);
$data[1] .= get_group_name ($map['id_group'], true);
$data[2] = get_db_sql ("SELECT COUNT(*) FROM tlayout_data WHERE id_layout = ".$map['id']);
$data[3] = '<a href="index.php?sec=gmap&amp;sec2=godmode/reporting/map_builder&amp;id_layout='.$map['id'].'&amp;copy_layout=1">'.print_image ("images/copy.png", true).'</a>';

View File

@ -52,7 +52,7 @@ foreach ($layouts as $layout) {
$data[0] = '<a href="index.php?sec=visualc&amp;sec2=operation/visual_console/render_view&amp;id='.
$layout['id'].'">'.$layout['name'].'</a> ';
$data[1] = print_group_icon ($layout["id_group"], true);
$data[1] .= "&nbsp;".get_group_name ($layout["id_group"]);
$data[1] .= "&nbsp;".get_group_name ($layout["id_group"], true);
$data[2] = get_db_value ('COUNT(*)', 'tlayout_data', 'id_layout', $layout['id']);
array_push ($table->data, $data);