Index: typo3/sysext/list/mod1/db_list.php
===================================================================
--- typo3/sysext/list/mod1/db_list.php	(Revision 9321)
+++ typo3/sysext/list/mod1/db_list.php	(Arbeitskopie)
@@ -186,6 +186,18 @@
 			$tce->stripslashes_values=0;
 			$tce->start(Array(),Array());
 			$tce->clear_cacheCmd($this->id);
+
+			/**
+			 * show a confirmation to the user
+			 *
+			 * @var t3lib_FlashMessage
+			 */
+			$message = t3lib_div::makeInstance(
+				't3lib_FlashMessage',
+				$GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xml:mess.cache_cleared_this_page')
+			);
+			$message->setDisappear(TRUE);
+			t3lib_FlashMessageQueue::addMessage($message);
 		}
 	}
 
Index: typo3/sysext/lang/locallang_core.xml
===================================================================
--- typo3/sysext/lang/locallang_core.xml	(Revision 9321)
+++ typo3/sysext/lang/locallang_core.xml	(Arbeitskopie)
@@ -196,6 +196,7 @@
 			<label index="mess.copycb_after">Copy all elements (%s) from the clipboard to the position after &quot;%s&quot;?</label>
 			<label index="mess.movecb_into">Move all elements (%s) from the clipboard into &quot;%s&quot;?</label>
 			<label index="mess.movecb_after">Move all elements (%s) from the clipboard to the position after &quot;%s&quot;?</label>
+			<label index="mess.cache_cleared_this_page">The cache has been cleared for this page.</label>
 			<label index="rm.menu">[menu]</label>
 			<label index="rm.saveDoc">Save document</label>
 			<label index="rm.saveDocShow">Save document and view page</label>
Index: typo3/sysext/cms/layout/db_layout.php
===================================================================
--- typo3/sysext/cms/layout/db_layout.php	(Revision 9321)
+++ typo3/sysext/cms/layout/db_layout.php	(Arbeitskopie)
@@ -399,6 +399,18 @@
 			$tce->stripslashes_values=0;
 			$tce->start(Array(),Array());
 			$tce->clear_cacheCmd($this->id);
+
+			/**
+			 * show a confirmation to the user
+			 * 
+			 * @var t3lib_FlashMessage
+			 */
+			$message = t3lib_div::makeInstance(
+				't3lib_FlashMessage',
+				$GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xml:mess.cache_cleared_this_page')
+			);
+			$message->setDisappear(TRUE);
+			t3lib_FlashMessageQueue::addMessage($message);
 		}
 	}
 
