Merge branch '523-deteccion-de-cambios-en-inventario-modulo-software-y-otros-con-varias-lineas-open' into 'develop'

Format module inventary to show only changes on events - #523

See merge request !508
This commit is contained in:
vgilc 2017-06-01 09:47:48 +02:00
commit b9db37f663
1 changed files with 2 additions and 1 deletions

View File

@ -2336,7 +2336,8 @@ function events_page_general ($event) {
$data = array(); $data = array();
$data[0] = __('Event name'); $data[0] = __('Event name');
$data[1] = strip_tags(io_safe_output($event["evento"])); $event["evento"] = str_replace ( 'event_line_jump' , '<br>' , $event["evento"]);
$data[1] = io_safe_output($event["evento"]);
$table_general->data[] = $data; $table_general->data[] = $data;
$data = array(); $data = array();