Added id to in progress status bin icon (disabled)

This commit is contained in:
fermin831 2018-04-24 12:11:04 +02:00
parent e09e1c4cd4
commit 112bbac527

View File

@ -699,8 +699,15 @@ else {
$data[$i] .= '</a>';
}
else {
$data[$i] .= html_print_image ("images/cross.disabled.png", true,
array ("title" => __('Is not allowed delete events in process'))).'&nbsp;';
$data[$i] .= html_print_image (
"images/cross.disabled.png",
true,
array (
"title" => __('Is not allowed delete events in process'),
"id" => "delete-" . $event['id_evento']
)
);
$data[$i] .= '&nbsp;';
}
}
}