Index: typo3/sysext/felogin/ext_tables.php =================================================================== --- typo3/sysext/felogin/ext_tables.php (revision 6913) +++ typo3/sysext/felogin/ext_tables.php (working copy) @@ -16,7 +16,27 @@ --div--;LLL:EXT:cms/locallang_ttc.xml:CType.I.14, pi_flexform;;;;1-1-1, --div--;LLL:EXT:cms/locallang_tca.xml:pages.tabs.access, starttime, endtime'; - // Adds the redirect-field to the fe_group- and fe_users-table + // Adds the redirect field to the fe_groups table +$tempColumns = array ( + "felogin_redirectPid" => array ( + "exclude" => 1, + "label" => "LLL:EXT:felogin/locallang_db.xml:felogin_redirectPid", + "config" => array ( + "type" => "group", + "internal_type" => "db", + "allowed" => "pages", + "size" => 1, + "minitems" => 0, + "maxitems" => 1, + ) + ), +); + +t3lib_div::loadTCA("fe_groups"); +t3lib_extMgm::addTCAcolumns("fe_groups",$tempColumns,1); +t3lib_extMgm::addToAllTCAtypes("fe_groups","felogin_redirectPid;;;;1-1-1"); + + // Adds the redirect field and the forgotHash field to the fe_users-table $tempColumns = array ( "felogin_redirectPid" => array ( "exclude" => 1, @@ -39,10 +59,6 @@ ), ); -t3lib_div::loadTCA("fe_groups"); -t3lib_extMgm::addTCAcolumns("fe_groups",$tempColumns,1); -t3lib_extMgm::addToAllTCAtypes("fe_groups","felogin_redirectPid;;;;1-1-1"); - t3lib_div::loadTCA("fe_users"); t3lib_extMgm::addTCAcolumns("fe_users",$tempColumns,1); t3lib_extMgm::addToAllTCAtypes("fe_users","felogin_redirectPid;;;;1-1-1");