Index: branches/comu-ver2/data/class/SC_Initial.php
===================================================================
--- branches/comu-ver2/data/class/SC_Initial.php	(revision 18088)
+++ branches/comu-ver2/data/class/SC_Initial.php	(revision 18185)
@@ -103,4 +103,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 & ~E_USER_DEPRECATED);
+        }
     }
 
@@ -211,5 +215,5 @@
         if (defined("HTML_PATH")) {
             umask(0);
-        	if (!file_exists(COMPILE_DIR)) {
+            if (!file_exists(COMPILE_DIR)) {
                 mkdir(COMPILE_DIR);
             }
