Enforced email field to be long enough to contain even long addresses.
This commit is contained in:
parent
ad3c6708df
commit
9b8b62f8cc
|
@ -0,0 +1,7 @@
|
||||||
|
<?php
|
||||||
|
defined('TYPO3_MODE') or die();
|
||||||
|
|
||||||
|
// Modifications on existing columns:
|
||||||
|
if ($GLOBALS['TCA']['fe_users']['columns']['email']['config']['size'] < 40) {
|
||||||
|
$GLOBALS['TCA']['fe_users']['columns']['email']['config']['size'] = 255;
|
||||||
|
}
|
Loading…
Reference in New Issue