2011-08-04 Javier Lanz <javier.lanz@artica.es>
* godmode/reporting/reporting_builder.php: Fixed blank names in reports Fixes: #3371409 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4668 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
7365283a8a
commit
149f4eb9bc
|
@ -1,3 +1,9 @@
|
|||
2011-08-04 Javier Lanz <javier.lanz@artica.es>
|
||||
|
||||
* godmode/reporting/reporting_builder.php: Fixed blank names in reports
|
||||
|
||||
Fixes: #3371409
|
||||
|
||||
2011-08-04 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||
|
||||
* install.php: Improved css style in installer.
|
||||
|
|
|
@ -152,7 +152,12 @@ switch ($action) {
|
|||
$description = get_parameter('description');
|
||||
|
||||
if ($action == 'update') {
|
||||
$resultOperationDB = (bool)db_process_sql_update('treport', array('name' => $reportName, 'id_group' => $idGroupReport, 'description' => $description), array('id_report' => $idReport));
|
||||
if ($reportName != "" && $idGroupReport != ""){
|
||||
$resultOperationDB = (bool)db_process_sql_update('treport', array('name' => $reportName, 'id_group' => $idGroupReport, 'description' => $description), array('id_report' => $idReport));
|
||||
}
|
||||
else {
|
||||
$resultOperationDB = false;
|
||||
}
|
||||
}
|
||||
else if ($action == 'save') {
|
||||
if($reportName != "" && $idGroupReport != "") {
|
||||
|
|
Loading…
Reference in New Issue