We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d55313e commit c6ebaa3Copy full SHA for c6ebaa3
1 file changed
controller/manifest.php
@@ -65,7 +65,7 @@ public function handle(): JsonResponse
65
66
$manifest = [
67
'name' => $this->config['sitename'],
68
- 'short_name' => $this->config['pwa_short_name'] ?: utf8_substr(preg_replace('/[^\x20-\x7E]/', '', $this->config['sitename']), 0, 12),
+ 'short_name' => $this->config['pwa_short_name'] ?: utf8_substr(preg_replace('/[^\x21-\x7E]/', '', html_entity_decode($this->config['sitename'], ENT_QUOTES, 'UTF-8')), 0, 12),
69
'display' => 'standalone',
70
'orientation' => 'portrait',
71
'dir' => $this->language->lang('DIRECTION'),
0 commit comments