Index: branches/version-2_4-dev/data/class/SC_Initial.php
===================================================================
--- branches/version-2_4-dev/data/class/SC_Initial.php	(revision 18505)
+++ branches/version-2_4-dev/data/class/SC_Initial.php	(revision 18669)
@@ -102,4 +102,8 @@
     function setErrorReporting() {
         error_reporting(E_ALL & ~E_NOTICE);
+        // PHP 5.3.0対応
+        if (error_reporting() > 6143) {
+            error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
+        }
     }
 
