1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-28 00:30:09 +02:00

Display name max length now 100 (to fit DB column length)

This commit is contained in:
secretr
2011-09-16 11:35:22 +00:00
parent c3e47ec137
commit 2d1809d208
2 changed files with 2 additions and 2 deletions

View File

@@ -75,7 +75,7 @@ if(isset($_POST['updateprefs']))
// Table of range checking values - min and max for numerics. Only do the important ones
$pref_limits = array('loginname_maxlength' => array('min' => 10, 'max' => 100, 'default' => 30),
'displayname_maxlength' => array('min' => 5, 'max' => 30, 'default' => 15),
'displayname_maxlength' => array('min' => 5, 'max' => 100, 'default' => 15),
'antiflood_timeout' => array('min' => 3, 'max' => 300, 'default' => 10),
'signup_pass_len' => array('min' => 2, 'max' => 100, 'default' => 4)
);