Enforced email field to be long enough to contain even long addresses.

This commit is contained in:
Dirk Jahnke 2019-10-10 13:08:05 +02:00
parent ad3c6708df
commit 9b8b62f8cc
1 changed files with 7 additions and 0 deletions

View File

@ -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;
}