2013-09-04 Ramon Novoa <rnovoa@artica.es>
* include/functions_events.php, include/javascript/pandora_events.js: Added 'ID extra' to the event details. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8737 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
3da5f64882
commit
eed5d0efb4
|
@ -1,3 +1,9 @@
|
|||
2013-09-04 Ramon Novoa <rnovoa@artica.es>
|
||||
|
||||
* include/functions_events.php,
|
||||
include/javascript/pandora_events.js: Added 'ID extra' to the event
|
||||
details.
|
||||
|
||||
2013-09-03 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* include/functions_groups.php, operation/agentes/group_view.php:
|
||||
|
|
|
@ -2250,6 +2250,16 @@ function events_page_general ($event) {
|
|||
}
|
||||
$table_general->data[] = $data;
|
||||
|
||||
$data = array();
|
||||
$data[0] = __('ID extra');
|
||||
if ($event["id_extra"] != '') {
|
||||
$data[1] = $event["id_extra"];
|
||||
}
|
||||
else {
|
||||
$data[1] = '<i>' . __('N/A') . '</i>';
|
||||
}
|
||||
$table_general->data[] = $data;
|
||||
|
||||
$general = '<div id="extended_event_general_page" class="extended_event_pages">'.html_print_table($table_general,true).'</div>';
|
||||
|
||||
return $general;
|
||||
|
|
|
@ -47,7 +47,7 @@ function show_event_dialog(event_id, group_rep, dialog_page, result) {
|
|||
background: "black"
|
||||
},
|
||||
width: 700,
|
||||
height: 500
|
||||
height: 510
|
||||
})
|
||||
.show ();
|
||||
|
||||
|
|
Loading…
Reference in New Issue