Index: typo3/sysext/cms/tbl_cms.php =================================================================== --- typo3/sysext/cms/tbl_cms.php (revision 6805) +++ typo3/sysext/cms/tbl_cms.php (working copy) @@ -99,6 +99,26 @@ 'max' => '80' ) ), + 'first_name' => array( + 'exclude' => 1, + 'label' => 'LLL:EXT:lang/locallang_general.php:LGL.first_name', + 'config' => array( + 'type' => 'input', + 'size' => '40', + 'eval' => 'trim', + 'max' => '50' + ) + ), + 'last_name' => array( + 'exclude' => 1, + 'label' => 'LLL:EXT:lang/locallang_general.php:LGL.last_name', + 'config' => array( + 'type' => 'input', + 'size' => '40', + 'eval' => 'trim', + 'max' => '50' + ) + ), 'address' => array( 'exclude' => 1, 'label' => 'LLL:EXT:lang/locallang_general.php:LGL.address', @@ -291,7 +311,7 @@ ') ), 'palettes' => array( - '1' => array('showitem' => 'title,company') + '1' => array('showitem' => 'title,first_name,last_name,company') ) ); Index: typo3/sysext/cms/ext_tables.sql =================================================================== --- typo3/sysext/cms/ext_tables.sql (revision 6805) +++ typo3/sysext/cms/ext_tables.sql (working copy) @@ -203,6 +203,8 @@ starttime int(11) unsigned DEFAULT '0' NOT NULL, endtime int(11) unsigned DEFAULT '0' NOT NULL, name varchar(80) DEFAULT '' NOT NULL, + first_name varchar(50) DEFAULT '' NOT NULL, + last_name varchar(50) DEFAULT '' NOT NULL, address varchar(255) DEFAULT '' NOT NULL, telephone varchar(20) DEFAULT '' NOT NULL, fax varchar(20) DEFAULT '' NOT NULL, Index: typo3/sysext/lang/locallang_general.xml =================================================================== --- typo3/sysext/lang/locallang_general.xml (revision 6805) +++ typo3/sysext/lang/locallang_general.xml (working copy) @@ -29,6 +29,8 @@ + +