diff options
author | 3D-I <eataly3d@gmail.com> | 2019-08-06 02:16:04 +0200 |
---|---|---|
committer | 3D-I <eataly3d@gmail.com> | 2019-08-06 02:17:13 +0200 |
commit | ed7b44d59e0dbc73a9a1ed19e288ddbbb02888ae (patch) | |
tree | bd82a59655b33115fee15ecc457b17714718dec1 /phpBB | |
parent | 5307da11b63a953ce37c32d6bffe74f35a303a97 (diff) | |
download | forums-ed7b44d59e0dbc73a9a1ed19e288ddbbb02888ae.tar forums-ed7b44d59e0dbc73a9a1ed19e288ddbbb02888ae.tar.gz forums-ed7b44d59e0dbc73a9a1ed19e288ddbbb02888ae.tar.bz2 forums-ed7b44d59e0dbc73a9a1ed19e288ddbbb02888ae.tar.xz forums-ed7b44d59e0dbc73a9a1ed19e288ddbbb02888ae.zip |
[ticket/16119] Prevent error message for Poll Title
PHPBB3-16119
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/styles/prosilver/template/posting_poll_body.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/template/posting_poll_body.html b/phpBB/styles/prosilver/template/posting_poll_body.html index ee7100aded..795649650d 100644 --- a/phpBB/styles/prosilver/template/posting_poll_body.html +++ b/phpBB/styles/prosilver/template/posting_poll_body.html @@ -15,8 +15,8 @@ <!-- IF S_SHOW_POLL_BOX --> <dl> - <dt><label for="poll_title">{L_POLL_QUESTION}{L_COLON}</label></dt> - <dd><input type="text" name="poll_title" id="poll_title" maxlength="255" value="{POLL_TITLE}" class="inputbox" /></dd> + <dt><label for="poll_title">{{ lang('POLL_QUESTION') ~ lang('COLON') }}</label></dt> + <dd><input type="text" name="poll_title" id="poll_title" maxlength="100" value="{{ POLL_TITLE }}" class="inputbox" /></dd> </dl> <dl> <dt><label for="poll_option_text">{L_POLL_OPTIONS}{L_COLON}</label><br /><span>{L_POLL_OPTIONS_EXPLAIN}</span></dt> |