1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[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
This commit is contained in:
Saeed Hubaishan
2015-11-29 10:51:19 +03:00
committed by Marc Alexander
parent a7058d968f
commit 678ca5dcdc
6 changed files with 41 additions and 5 deletions

View File

@@ -86,7 +86,7 @@ class ucp_prefs
}
$error = array_merge(validate_data($data, array(
'dateformat' => array('string', false, 1, 30),
'dateformat' => array('string', false, 1, 64),
'lang' => array('language_iso_name'),
'tz' => array('timezone'),
)), $error);