diff options
author | Saeed Hubaishan <saeed@hubaishan.com> | 2015-11-29 10:51:19 +0300 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2016-01-07 17:36:02 +0100 |
commit | 678ca5dcdc27f2df10c6042ce74d08f4196d5a02 (patch) | |
tree | 631d7aee240afe38f8ce7a3027d7f6b12d946650 /phpBB/styles/subsilver2 | |
parent | a7058d968ff2e4b4cb4b32fb3f7284bd1a539c93 (diff) | |
download | forums-678ca5dcdc27f2df10c6042ce74d08f4196d5a02.tar forums-678ca5dcdc27f2df10c6042ce74d08f4196d5a02.tar.gz forums-678ca5dcdc27f2df10c6042ce74d08f4196d5a02.tar.bz2 forums-678ca5dcdc27f2df10c6042ce74d08f4196d5a02.tar.xz forums-678ca5dcdc27f2df10c6042ce74d08f4196d5a02.zip |
[ticket/13180] Increase dateformat field size
[ticket/13180] Increase dateformat field size
change field size to 64 in these files
add new migration file to update the database schema
PHPBB3-13180
Diffstat (limited to 'phpBB/styles/subsilver2')
-rw-r--r-- | phpBB/styles/subsilver2/template/ucp_prefs_personal.html | 2 |
1 files changed, 1 insertions, 1 deletions
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 --> |