diff --git a/NEWS.txt b/NEWS.txt
index 402072a78d17ef83bc470e5bc19fa44dfdb6967b..2647c18045610bf662fabb7efa212fd1c9d25009 100644
--- a/NEWS.txt
+++ b/NEWS.txt
@@ -97,6 +97,11 @@ figured with:
 $TYPO3_CONF_VARS['FE']['cookieName'] and
 $TYPO3_CONF_VARS['BE']['cookieName'].
 
+* Moved t3d exports to fileadmin/_temp_ directory
+
+t3d packages exported by the import / extbase extension are now stored in
+fileadmin/_temp_ by default which is access restricted by default .htaccess
+rules.
 
 -------------------------------------------------------------------------------
 Backend
@@ -209,4 +214,4 @@ in own extensions can be found at http://wiki.typo3.org/Caching_framework.
 
 The database backend must not define own tables and table definitions anymore.
 Cache tables and table layout of the database backend will created by the
-caching framework when needed.
+caching framework when needed.
\ No newline at end of file
diff --git a/typo3/sysext/impexp/app/index.php b/typo3/sysext/impexp/app/index.php
index a8f7d5a9c7df741d7e9290393a422d02f52dfec8..62866ff8a4857e3fdd9804a184a9ec1b915a99f5 100755
--- a/typo3/sysext/impexp/app/index.php
+++ b/typo3/sysext/impexp/app/index.php
@@ -1546,11 +1546,11 @@ class SC_mod_tools_log_index extends t3lib_SCbase {
 		reset($FILEMOUNTS);
 		$filePathInfo = current($FILEMOUNTS);
 
-		if (is_array($filePathInfo))	{
-			$tempFolder = $filePathInfo['path'].'export/';
-			if (!@is_dir($tempFolder))	{
+		if (is_array($filePathInfo)) {
+			$tempFolder = $filePathInfo['path'] . '_temp_/';
+			if (!@is_dir($tempFolder)) {
 				$tempFolder = $filePathInfo['path'];
-				if (!@is_dir($tempFolder))	{
+				if (!@is_dir($tempFolder)) {
 					return FALSE;
 				}
 			}