0byt3m1n1
Path:
/
data
/
applications
/
aps
/
typo3
/
4.5.5-0
/
standard
/
htdocs
/
typo3
/
sysext
/
rsaauth
/
[
Home
]
File: ext_tables.php
<?php if (!defined ('TYPO3_MODE')) { die('Access denied.'); } // Define the table for keys. Make sure that it cannot be edited or seen by // any user in any way. $TCA['tx_rsaauth_keys'] = array ( 'ctrl' => array ( 'adminOnly' => true, 'hideTable' => true, 'is_static' => true, 'label' => 'uid', 'readOnly' => true, 'rootLevel' => 1, 'title' => 'Oops! You should not see this!' ), 'columns' => array( ), 'types' => array( '0' => array( 'showitem' => '' ) ) ); ?>