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

* godmode/reporting/reporting_builder.php: Changed the
        All group on combos from 1 to 0 and fix the
        group all on tables



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2601 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
zarzuelo 2010-04-23 11:14:57 +00:00
parent 3ecf8a5e29
commit 6cb14fd52b
2 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2010-04-23 Sergio Martin <sergio.martin@artica.es>
* godmode/reporting/reporting_builder.php: Changed the
All group on combos from 1 to 0 and fix the
group all on tables
2010-04-22 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.php: re-added the list of reports,

View File

@ -88,7 +88,7 @@ switch ($action) {
else
$data[2] = __('No');
$data[3] = get_group_name($report['id_group']);
$data[3] = get_group_name($report['id_group'], true);
$data[4] = '<form method="post" style="display:inline" onsubmit="if (!confirm (\''.__('Are you sure?').'\')) return false">';
$data[4] .= print_input_hidden ('id_report', $report['id_report'], true);
$data[4] .= print_input_hidden ('action','delete_report', true);
@ -115,7 +115,7 @@ switch ($action) {
switch ($activeTab) {
case 'main':
$reportName = '';
$idGroupReport = 1; //All groups
$idGroupReport = 0; //All groups
$description = '';
$resultOperationDB = null;
break;