Skip to content

Commit d80f971

Browse files
authored
Merge pull request #95 from iMattPro/emoji-count
Limit shortname length, but support emoji
2 parents c9f920f + 60cca5b commit d80f971

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{% if S_PWA_OPTIONS %}
2+
<script>
3+
const input = document.getElementById('pwa_short_name');
4+
const maxLength = 12;
5+
6+
input.addEventListener('input', () => {
7+
// Use Array.from to count characters correctly
8+
const inputChars = Array.from(input.value);
9+
10+
// If input exceeds maxLength, truncate it
11+
if (inputChars.length > maxLength) {
12+
input.value = inputChars.slice(0, maxLength).join('');
13+
}
14+
});
15+
</script>
16+
{% endif %}

event/listener.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,8 @@ public function acp_pwa_options($event)
169169
];
170170

171171
$event->update_subarray('display_vars', 'vars', phpbb_insert_config_array($event['display_vars']['vars'], $my_config_vars, ['before' => 'legend4']));
172+
173+
$this->template->assign_var('S_PWA_OPTIONS', true);
172174
}
173175
}
174176

@@ -213,7 +215,7 @@ public function pwa_short_sitename($value, $key)
213215
{
214216
$placeholder = $this->trim_shortname($this->config['sitename']);
215217

216-
return '<input id="' . $key . '" type="text" size="40" maxlength="12" name="config[' . $key . ']" value="' . $value . '" placeholder="' . $placeholder . '">';
218+
return '<input id="' . $key . '" type="text" size="40" maxlength="24" name="config[' . $key . ']" value="' . $value . '" placeholder="' . $placeholder . '">';
217219
}
218220

219221
/**

0 commit comments

Comments
 (0)