From 751bcf6e36487f4418fd3edf6030448d34643974 Mon Sep 17 00:00:00 2001 From: Michael Stucki Date: Mon, 31 Jul 2006 11:17:22 +0000 Subject: [PATCH] * Changed version requirements for t3skin (problems in combination with TYPO3 4.0.1) git-svn-id: https://svn.typo3.org/TYPO3v4/Core/trunk@1667 709f56b5-9817-0410-a4d7-c38de5d9e867 --- ChangeLog | 1 + NEWS.txt | 3 +-- typo3/sysext/cms/tslib/class.tslib_fe.php | 2 +- typo3/sysext/t3skin/ext_emconf.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index d7f2bba7be9b..7c494f969522 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,7 @@ 2006-07-31 Michael Stucki * Updates to NEWS.txt (thanks to Martin Kutschker) + * Changed version requirements for t3skin (problems in combination with TYPO3 4.0.1) 2006-07-30 Michael Stucki diff --git a/NEWS.txt b/NEWS.txt index 4304a891462b..4cad0877488f 100644 --- a/NEWS.txt +++ b/NEWS.txt @@ -38,11 +38,10 @@ Important bugfixes * Windows systems print phpinfo under some circumstances (bug #3362) * HTTP status was incorrect for pageNotFound_handling when external URL is specified as 404 page + * Wrong HTTP status 503 was sent when $TSFE->set_no_cache() was called from a plugin (bugs #3049 and #3176) * Mail forms did not work with submit buttons (bug #1374) * FE editing: edit form on page did not work in 4.0 - * Several issues of "text with image" for "CSS styled content" have been resolved * Linking images to hidden pages resulted in click-enlarge (bug #3522) - * Wrong HTTP status 503 was sent when $TSFE->set_no_cache() was called from a plugin (bugs #3049 and #3176) * config.formMailCharset did not work (bug #3600) * Some broken references to media/ have been fixed (bug #3233) * Fixed RTE bug: images were removed under some special conditions when saving (bug #3051) diff --git a/typo3/sysext/cms/tslib/class.tslib_fe.php b/typo3/sysext/cms/tslib/class.tslib_fe.php index a0c915357de4..14255ab8751c 100755 --- a/typo3/sysext/cms/tslib/class.tslib_fe.php +++ b/typo3/sysext/cms/tslib/class.tslib_fe.php @@ -1310,7 +1310,7 @@ if ($reason == '') { $reason = 'Page cannot be found.'; } - $reason .= chr(10) . chr(10) . 'Additionally ' . $code . ' was not found while trying to retrieve the error document.'; + $reason.= chr(10) . chr(10) . 'Additionally, ' . $code . ' was not found while trying to retrieve the error document.'; $this->printError('Reason: '.nl2br(htmlspecialchars($reason))); exit(); } diff --git a/typo3/sysext/t3skin/ext_emconf.php b/typo3/sysext/t3skin/ext_emconf.php index 1145a1c87a5f..cfd9daf16bb7 100644 --- a/typo3/sysext/t3skin/ext_emconf.php +++ b/typo3/sysext/t3skin/ext_emconf.php @@ -37,7 +37,7 @@ $EM_CONF[$_EXTKEY] = array( 'constraints' => array( 'depends' => array( 'php' => '4.3.0-5.9.0', - 'typo3' => '3.9.0-4.0', + 'typo3' => '3.9.0-4.0.999', ), 'conflicts' => array( ), -- 2.20.1