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:
parent
b8ab041050
commit
6ee973b6e2
2 changed files with 2 additions and 2 deletions
modules/jjwg_Markers/views
|
@ -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" />
|
||||
|
|
|
@ -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" />
|
||||
|
|
Loading…
Reference in a new issue