2010-07-15 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.php: fixed lost name of report when delete any element of this element. Fixes: #3025352 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3013 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
91a642db1e
commit
b05aa7c075
|
@ -1,3 +1,9 @@
|
||||||
|
2010-07-15 Miguel de Dios <miguel.dedios@artica.es>
|
||||||
|
|
||||||
|
* godmode/reporting/reporting_builder.php: fixed lost name of report when
|
||||||
|
delete any element of this element.
|
||||||
|
Fixes: #3025352
|
||||||
|
|
||||||
2010-07-16 Raúl Mateos <raulofpandora@gmail.com>
|
2010-07-16 Raúl Mateos <raulofpandora@gmail.com>
|
||||||
|
|
||||||
* operation/incidents/incident.php: Put create button on the right.
|
* operation/incidents/incident.php: Put create button on the right.
|
||||||
|
|
|
@ -254,6 +254,9 @@ switch ($action) {
|
||||||
case 'delete':
|
case 'delete':
|
||||||
$idItem = get_parameter('id_item');
|
$idItem = get_parameter('id_item');
|
||||||
|
|
||||||
|
$report = get_db_row_filter('treport', array('id_report' => $idReport));
|
||||||
|
$reportName = $report['name'];
|
||||||
|
|
||||||
$resultOperationDB = process_sql_delete('treport_content_sla_combined', array('id_report_content' => $idItem));
|
$resultOperationDB = process_sql_delete('treport_content_sla_combined', array('id_report_content' => $idItem));
|
||||||
|
|
||||||
if ($resultOperationDB !== false) {
|
if ($resultOperationDB !== false) {
|
||||||
|
|
Loading…
Reference in New Issue