diff options
author | Marc Alexander <admin@m-a-styles.de> | 2016-01-08 16:39:03 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2016-01-08 16:39:03 +0100 |
commit | 2ab7b124193ab87eeca8eef5d0e50eebd37d3336 (patch) | |
tree | 4aabe8b4c9cca150d732da6b86e9f2dc244cf26a /phpBB/styles | |
parent | ae18f8b27c20ab079af0694e799e78ee4c05977c (diff) | |
parent | a339b9e84faf1db97e4a9c6637ae974f90a3ad6b (diff) | |
download | forums-2ab7b124193ab87eeca8eef5d0e50eebd37d3336.tar forums-2ab7b124193ab87eeca8eef5d0e50eebd37d3336.tar.gz forums-2ab7b124193ab87eeca8eef5d0e50eebd37d3336.tar.bz2 forums-2ab7b124193ab87eeca8eef5d0e50eebd37d3336.tar.xz forums-2ab7b124193ab87eeca8eef5d0e50eebd37d3336.zip |
Merge pull request #4112 from marc1706/ticket/13180
[ticket/13180] Increase dateformat field size
Diffstat (limited to 'phpBB/styles')
-rw-r--r-- | phpBB/styles/prosilver/template/ucp_prefs_personal.html | 2 | ||||
-rw-r--r-- | phpBB/styles/subsilver2/template/ucp_prefs_personal.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/template/ucp_prefs_personal.html b/phpBB/styles/prosilver/template/ucp_prefs_personal.html index c8b028f83a..4cd9f6655b 100644 --- a/phpBB/styles/prosilver/template/ucp_prefs_personal.html +++ b/phpBB/styles/prosilver/template/ucp_prefs_personal.html @@ -70,7 +70,7 @@ {S_DATEFORMAT_OPTIONS} </select> </dd> - <dd id="custom_date" style="display:none;"><input type="text" name="dateformat" id="dateformat" value="{DATE_FORMAT}" maxlength="30" class="inputbox narrow" style="margin-top: 3px;" /></dd> + <dd id="custom_date" style="display:none;"><input type="text" name="dateformat" id="dateformat" value="{DATE_FORMAT}" maxlength="64" class="inputbox narrow" style="margin-top: 3px;" /></dd> </dl> <!-- EVENT ucp_prefs_personal_append --> </fieldset> diff --git a/phpBB/styles/subsilver2/template/ucp_prefs_personal.html b/phpBB/styles/subsilver2/template/ucp_prefs_personal.html index 1c76e3226d..0dd50b8fa2 100644 --- a/phpBB/styles/subsilver2/template/ucp_prefs_personal.html +++ b/phpBB/styles/subsilver2/template/ucp_prefs_personal.html @@ -59,7 +59,7 @@ <select name="dateoptions" id="dateoptions" onchange="if(this.value=='custom'){phpbb.toggleDisplay('custom_date',1);}else{phpbb.toggleDisplay('custom_date',-1);} if (this.value == 'custom') { document.getElementById('dateformat').value = default_dateformat; } else { document.getElementById('dateformat').value = this.value; }"> {S_DATEFORMAT_OPTIONS} </select> - <div id="custom_date"<!-- IF not S_CUSTOM_DATEFORMAT --> style="display:none;"<!-- ENDIF -->><input type="text" name="dateformat" id="dateformat" value="{DATE_FORMAT}" maxlength="30" class="post" style="margin-top: 3px;" /></div> + <div id="custom_date"<!-- IF not S_CUSTOM_DATEFORMAT --> style="display:none;"<!-- ENDIF -->><input type="text" name="dateformat" id="dateformat" value="{DATE_FORMAT}" maxlength="64" class="post" style="margin-top: 3px;" /></div> </td> </tr> <!-- EVENT ucp_prefs_personal_append --> |