Index: typo3/sysext/setup/mod/index.php =================================================================== --- typo3/sysext/setup/mod/index.php (revision 9816) +++ typo3/sysext/setup/mod/index.php (working copy) @@ -302,6 +302,14 @@ ); $this->doc->table_TR = ''; $this->doc->table_TABLE = ''; + + // Hook for changing the init settings form + if (!empty ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/setup/mod/index.php']['initSettingsForm']) && is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/setup/mod/index.php']['initSettingsForm'])) { + foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/setup/mod/index.php']['initSettingsForm'] as $funcRef) { + $params = array(); + t3lib_div::callUserFunction($funcRef, $params, $this); + } + } } /**