Index: t3lib/class.t3lib_tsstyleconfig.php =================================================================== --- t3lib/class.t3lib_tsstyleconfig.php (revision 10205) +++ t3lib/class.t3lib_tsstyleconfig.php (revision ) @@ -154,7 +154,7 @@ * @param string $extKey * @return string the form */ - function ext_getForm($cat, $theConstants, $script = "", $addFields = "", $extKey = "") { + function ext_getForm($cat, $theConstants, $script = "", $addFields = "", $extKey = "", $addFormTag = TRUE) { $this->ext_makeHelpInformationForCategory($cat); $printFields = trim($this->ext_printFields($theConstants, $cat)); @@ -164,10 +164,13 @@ document.' . $this->ext_CEformName . '.action = "' . t3lib_div::linkThisScript() . '#"+aname; } '); + + if ($addFormTag) { - $content .= '
'; + $content .= ''; + } $content .= $addFields; $content .= $printFields; - $content .= ''; $example = $this->ext_displayExample();