0
0
Fork 0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2025-03-14 21:42:52 +00:00

PHP 8.2 - Fix Markers

This commit is contained in:
Clemente Raposo 2023-06-29 10:22:07 +01:00 committed by Jack Anderson
parent b8ab041050
commit 6ee973b6e2
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@ class Jjwg_MarkersViewMarker_Detail_Map extends SugarView
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><?php echo $GLOBALS['mod_strings']['LBL_MARKER_DISPLAY']; ?></title>
<title><?php echo $GLOBALS['mod_strings']['LBL_MARKER_DISPLAY'] ?? ''; ?></title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" type="text/css" href="cache/themes/<?php echo $GLOBALS['theme']; ?>/css/style.css" />

View file

@ -32,7 +32,7 @@ class Jjwg_MarkersViewMarker_Edit_Map extends SugarView
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><?php echo $GLOBALS['mod_strings']['LBL_MARKER_DISPLAY']; ?></title>
<title><?php echo $GLOBALS['mod_strings']['LBL_MARKER_DISPLAY'] ?? ''; ?></title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" type="text/css" href="cache/themes/<?php echo $GLOBALS['theme']; ?>/css/style.css" />