Limited number of characters shown in the table - #2783

This commit is contained in:
tatiana.llorente@artica.es 2018-09-21 09:21:21 +02:00
parent e0e098a7a6
commit 51af767549
1 changed files with 6 additions and 1 deletions

View File

@ -274,7 +274,12 @@ if (!empty($all_data)) {
. human_time_comparation($session['utimestamp'], 'tiny');
$data[3] = $session_ip_origen;
$description = str_replace(array(',', ', '), ', ', $session['descripcion']);
$data[4] = '<div >' . io_safe_output($description) . '</div>';
if(strlen($description)>100){
$data[4] = '<div >' . io_safe_output(substr($description, 0, 150).'...') . '</div>';
}
else{
$data[4] = '<div >' . io_safe_output($description) . '</div>';
}
array_push ($table->data, $data);
}