diff options
author | Senky <jakubsenko@gmail.com> | 2012-09-23 18:21:17 +0200 |
---|---|---|
committer | Senky <jakubsenko@gmail.com> | 2013-05-20 18:39:59 +0200 |
commit | beafabbcb3ff5e1f06612f9205598ac12abbd2e3 (patch) | |
tree | e3dba3a5e527c10e12f8242f7c77508ffd3d7b88 /phpBB/styles/prosilver/template/posting_editor.html | |
parent | d6e239bdd9d492aee7394d2bcfdc0896d1802d8d (diff) | |
download | forums-beafabbcb3ff5e1f06612f9205598ac12abbd2e3.tar forums-beafabbcb3ff5e1f06612f9205598ac12abbd2e3.tar.gz forums-beafabbcb3ff5e1f06612f9205598ac12abbd2e3.tar.bz2 forums-beafabbcb3ff5e1f06612f9205598ac12abbd2e3.tar.xz forums-beafabbcb3ff5e1f06612f9205598ac12abbd2e3.zip |
[ticket/11010] adding type="number" and type="date" to prosilver
PHPBB3-11010
Diffstat (limited to 'phpBB/styles/prosilver/template/posting_editor.html')
-rw-r--r-- | phpBB/styles/prosilver/template/posting_editor.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/posting_editor.html b/phpBB/styles/prosilver/template/posting_editor.html index 83dc6111dd..3eac8fb03a 100644 --- a/phpBB/styles/prosilver/template/posting_editor.html +++ b/phpBB/styles/prosilver/template/posting_editor.html @@ -244,7 +244,7 @@ <!-- IF S_TOPIC_TYPE_ANNOUNCE or S_TOPIC_TYPE_STICKY --> <dl> <dt><label for="topic_time_limit">{L_STICK_TOPIC_FOR}{L_COLON}</label></dt> - <dd><label for="topic_time_limit"><input type="text" name="topic_time_limit" id="topic_time_limit" size="3" maxlength="3" value="{TOPIC_TIME_LIMIT}" class="inputbox autowidth" /> {L_DAYS}</label></dd> + <dd><label for="topic_time_limit"><input type="number" min="0" max="999" name="topic_time_limit" id="topic_time_limit" size="3" maxlength="3" value="{TOPIC_TIME_LIMIT}" class="inputbox autowidth" /> {L_DAYS}</label></dd> <dd>{L_STICK_TOPIC_FOR_EXPLAIN}</dd> </dl> <!-- ENDIF --> |