+2008-05-21 Jeff Segars <jeff@webempoweredchurch.org>
+
+ * Fixed bug #7509: TypoScript Editor doesn't save changes in IE
+
2008-05-20 Dmitry Dulepov <dmitry@typo3.org>
* Fixed bug #8263: t3editor should not highlight decimals (thanks to Tobias Liebig)
// Update template ?
$POST = t3lib_div::_POST();
- if ($POST['submit']) {
+ if ($POST['submit'] || (t3lib_div::testInt($POST['submit_x']) && t3lib_div::testInt($POST['submit_y']))) {
require_once(PATH_t3lib.'class.t3lib_tcemain.php');
// Set the data to be saved
$recData = array();
$numberOfRows = 35;
// If abort pressed, nothing should be edited:
- if (t3lib_div::_POST('abort')) {
+ if ($POST['abort'] || (t3lib_div::testInt($POST['abort_x']) && t3lib_div::testInt($POST['abort_y']))) {
unset($e);
}