独学而无友,则孤陋而寡闻!
分类: 系统运维
2009-10-28 16:45:39
表现:typo3的用户组管理中,如果加上权限列表,则“Allowed excludefields:”一栏有50行,对于一般的显示器来说超出了显示范围,需要调动左侧的滚动条,非常不方便。
分析:
后台的设置在:typo3_src-4.2.9/t3lib/stddb/tbl_be.php中定义。大约534行,改过来就行了:
'non_exclude_fields' => array( 'label' => 'LLL:EXT:lang/locallang_tca.xml:be_groups.non_exclude_fields', 'config' => array( 'type' => 'select', 'special' => 'exclude', 'size' => '25', 'maxitems' => 1000, 'autoSizeMax' => 50, 'renderMode' => $GLOBALS['TYPO3_CONF_VARS']['BE']['accessListRenderMode'], ) ), |