Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Pathologic committed Aug 22, 2023
1 parent 15a8faa commit 6ac2eff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manager/frames/1.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
<!DOCTYPE html>
<html <?= (isset($modx_textdir) && $modx_textdir ? 'dir="rtl" lang="' : 'lang="') . $mxla . '" xml:lang="' . $mxla . '"' ?>>
<head>
<title><?= $site_name ?> (EVO CMS Manager)</title>
<title><?= htmlspecialchars($site_name, ENT_QUOTES, $modx->getConfig('modx_charset')) ?> (EVO CMS Manager)</title>
<meta http-equiv="Content-Type" content="text/html; charset=<?= $modx_manager_charset ?>" />
<meta name="viewport" content="initial-scale=1.0,user-scalable=no,maximum-scale=1,width=device-width" />
<meta name="theme-color" content="#1d2023" />
Expand Down Expand Up @@ -155,7 +155,7 @@
groups: <?= json_encode($modx->getUserDocGroups()) ?>
},
config: {
manager_title: '<?= htmlspecialchars($site_name, ENT_QUOTES) ?> (EVO CMS Manager)',
manager_title: '<?= htmlspecialchars($site_name, ENT_QUOTES, $modx->getConfig('modx_charset')) ?> (EVO CMS Manager)',
mail_check_timeperiod: <?= $modx->config['mail_check_timeperiod'] ?>,
menu_height: <?= (int)$menu_height ?>,
tree_width: <?= (int)$tree_width ?>,
Expand Down

0 comments on commit 6ac2eff

Please sign in to comment.