Index: typo3/init.php
===================================================================
--- typo3/init.php	(Revision 6329)
+++ typo3/init.php	(Arbeitskopie)
@@ -66,7 +66,11 @@
 // *******************************
 // Set error reporting
 // *******************************
-error_reporting (E_ALL ^ E_NOTICE);
+if (version_compare(phpversion(), '5.3', '>=')) {
+	error_reporting(E_ALL ^ E_NOTICE ^ E_DEPRECATED);
+} else {
+	error_reporting(E_ALL ^ E_NOTICE);
+}

 // *******************************
 // Prevent any unwanted output that may corrupt AJAX/compression. Note: this does
Index: typo3/sysext/cms/tslib/index_ts.php
===================================================================
--- typo3/sysext/cms/tslib/index_ts.php	(Revision 6329)
+++ typo3/sysext/cms/tslib/index_ts.php	(Arbeitskopie)
@@ -46,7 +46,11 @@
 // *******************************
 // Set error reporting
 // *******************************
-error_reporting (E_ALL ^ E_NOTICE);
+if (version_compare(phpversion(), '5.3', '>=')) {
+	error_reporting(E_ALL ^ E_NOTICE ^ E_DEPRECATED);
+} else {
+	error_reporting(E_ALL ^ E_NOTICE);
+}


 // ******************
