Index: t3lib/stddb/tables.php =================================================================== --- t3lib/stddb/tables.php (revision 5735) +++ t3lib/stddb/tables.php (working copy) @@ -233,7 +233,7 @@ 'config' => array( 'type' => 'input', 'size' => '30', - 'max' => '30', + 'max' => '255', ) ), 'editlock' => array( Index: t3lib/stddb/tables.sql =================================================================== --- t3lib/stddb/tables.sql (revision 5735) +++ t3lib/stddb/tables.sql (working copy) @@ -155,7 +155,7 @@ t3ver_oid int(11) DEFAULT '0' NOT NULL, t3ver_id int(11) DEFAULT '0' NOT NULL, t3ver_wsid int(11) DEFAULT '0' NOT NULL, - t3ver_label varchar(30) DEFAULT '' NOT NULL, + t3ver_label varchar(255) DEFAULT '' NOT NULL, t3ver_state tinyint(4) DEFAULT '0' NOT NULL, t3ver_stage tinyint(4) DEFAULT '0' NOT NULL, t3ver_count int(11) DEFAULT '0' NOT NULL, Index: typo3/sysext/cms/ext_tables.sql =================================================================== --- typo3/sysext/cms/ext_tables.sql (revision 5735) +++ typo3/sysext/cms/ext_tables.sql (working copy) @@ -183,7 +183,7 @@ t3ver_oid int(11) DEFAULT '0' NOT NULL, t3ver_id int(11) DEFAULT '0' NOT NULL, t3ver_wsid int(11) DEFAULT '0' NOT NULL, - t3ver_label varchar(30) DEFAULT '' NOT NULL, + t3ver_label varchar(255) DEFAULT '' NOT NULL, t3ver_state tinyint(4) DEFAULT '0' NOT NULL, t3ver_stage tinyint(4) DEFAULT '0' NOT NULL, t3ver_count int(11) DEFAULT '0' NOT NULL, @@ -269,7 +269,7 @@ t3ver_oid int(11) DEFAULT '0' NOT NULL, t3ver_id int(11) DEFAULT '0' NOT NULL, t3ver_wsid int(11) DEFAULT '0' NOT NULL, - t3ver_label varchar(30) DEFAULT '' NOT NULL, + t3ver_label varchar(255) DEFAULT '' NOT NULL, t3ver_state tinyint(4) DEFAULT '0' NOT NULL, t3ver_stage tinyint(4) DEFAULT '0' NOT NULL, t3ver_count int(11) DEFAULT '0' NOT NULL, @@ -314,7 +314,7 @@ t3ver_oid int(11) DEFAULT '0' NOT NULL, t3ver_id int(11) DEFAULT '0' NOT NULL, t3ver_wsid int(11) DEFAULT '0' NOT NULL, - t3ver_label varchar(30) DEFAULT '' NOT NULL, + t3ver_label varchar(255) DEFAULT '' NOT NULL, t3ver_state tinyint(4) DEFAULT '0' NOT NULL, t3ver_stage tinyint(4) DEFAULT '0' NOT NULL, t3ver_count int(11) DEFAULT '0' NOT NULL, Index: typo3/sysext/cms/tbl_cms.php =================================================================== --- typo3/sysext/cms/tbl_cms.php (revision 5735) +++ typo3/sysext/cms/tbl_cms.php (working copy) @@ -665,7 +665,7 @@ 'config' => array( 'type' => 'input', 'size' => '30', - 'max' => '30', + 'max' => '255', ) ), ), @@ -938,7 +938,7 @@ 'config' => array( 'type' => 'input', 'size' => '30', - 'max' => '30', + 'max' => '255', ) ), ), Index: typo3/sysext/cms/tbl_tt_content.php =================================================================== --- typo3/sysext/cms/tbl_tt_content.php (revision 5735) +++ typo3/sysext/cms/tbl_tt_content.php (working copy) @@ -965,7 +965,7 @@ 'config' => Array ( 'type' => 'input', 'size' => '30', - 'max' => '30', + 'max' => '255', ) ), ),