1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-05 06:07:32 +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)
);

View File

@@ -163,7 +163,7 @@ define("PRFLAN_154", "New user verification method");
define("PRFLAN_155", "Display name and login name may be different for");
define("PRFLAN_156", "Reset ALL Display Names");
define("PRFLAN_157", "All Display Names have been reset to the Username");
define("PRFLAN_158", "Display Name maximum length (5..30)");
define("PRFLAN_158", "Display Name maximum length (5..100)");
define("PRFLAN_159", "viewing this page with");
define("PRFLAN_160", "Check remote servers when validating email addresses.");
define("PRFLAN_161", "Disable all comments on the site");