Merge branch 'fix-warnings-with-php72' into 'develop'
Fixed warnings and some icons are not shown correctly with php7.2. See merge request artica/pandorafms!1490
This commit is contained in:
commit
a69550f79e
|
@ -392,7 +392,7 @@ if ($id_agente) {
|
|||
|
||||
$grouptab['active'] = false;
|
||||
|
||||
$gistab = "";
|
||||
$gistab = array();
|
||||
|
||||
/* GIS tab */
|
||||
if ($config['activate_gis']) {
|
||||
|
|
|
@ -1084,7 +1084,7 @@ else {
|
|||
$tab = get_parameter ("tab", "main");
|
||||
|
||||
/* Manage tab */
|
||||
$managetab = "";
|
||||
$managetab = array();
|
||||
|
||||
if (check_acl_one_of_groups ($config['id_user'],$all_groups, "AW") || $is_extra) {
|
||||
$managetab['text'] ='<a href="index.php?sec=gagente&sec2=godmode/agentes/configurar_agente&id_agente='.$id_agente.'">'
|
||||
|
@ -1165,7 +1165,7 @@ if ($url_route_analyzer) {
|
|||
}
|
||||
|
||||
/* GIS tab */
|
||||
$gistab="";
|
||||
$gistab=array();
|
||||
if ($config['activate_gis']) {
|
||||
$gistab['text'] = '<a href="index.php?sec=estado&sec2=operation/agentes/ver_agente&tab=gis&id_agente='.$id_agente.'">'
|
||||
.html_print_image("images/op_gis.png", true, array( "title" => __('GIS data')))
|
||||
|
|
Loading…
Reference in New Issue