Index: t3lib/class.t3lib_tsstyleconfig.php =================================================================== --- t3lib/class.t3lib_tsstyleconfig.php (revision 10121) +++ t3lib/class.t3lib_tsstyleconfig.php (revision ) @@ -145,15 +145,16 @@ } /** - * [Describe function...] + * Get the form for extension configuration * - * @param [type] $cat: ... - * @param [type] $theConstants: ... - * @param [type] $script: ... - * @param [type] $addFields: ... - * @return [type] ... + * @param string $cat + * @param array $theConstants + * @param string $script + * @param string $addFields + * @param string $extKey + * @return string the form */ - function ext_getForm($cat, $theConstants, $script = "", $addFields = "") { + function ext_getForm($cat, $theConstants, $script = "", $addFields = "", $extKey = "") { $this->ext_makeHelpInformationForCategory($cat); $printFields = trim($this->ext_printFields($theConstants, $cat)); @@ -166,7 +167,8 @@ $content .= '
'; $content .= $addFields; $content .= $printFields; - $content .= ''; + $content .= ''; $example = $this->ext_displayExample(); $content .= $example ? '
' . $example : "";