Index: /branches/version-2_11-dev/html/.htaccess
===================================================================
--- /branches/version-2_11-dev/html/.htaccess	(revision 20116)
+++ /branches/version-2_11-dev/html/.htaccess	(revision 21180)
@@ -11,5 +11,8 @@
 
 # デフォルトテンプレートの状態で 2M 近くになるため
-php_value upload_max_filesize 5M
+php_value upload_max_filesize 15M
 #php_value post_max_size 8M
 php_flag register_globals off
+
+# E_ALL(30719) - E_NOTICE(8) - E_DEPRECATED(8192)
+php_value error_reporting 22519
Index: /branches/version-2_11-dev/php.ini
===================================================================
--- /branches/version-2_11-dev/php.ini	(revision 20116)
+++ /branches/version-2_11-dev/php.ini	(revision 21180)
@@ -14,2 +14,3 @@
 ;post_max_size = 8M
 register_globals = off
+error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED
Index: /branches/version-2_11-dev/data/class/SC_Initial.php
===================================================================
--- /branches/version-2_11-dev/data/class/SC_Initial.php	(revision 21179)
+++ /branches/version-2_11-dev/data/class/SC_Initial.php	(revision 21180)
@@ -53,5 +53,4 @@
         $this->requireInitialConfig();
         $this->defineDSN();
-        $this->setErrorReporting();
         $this->defineDirectoryIndex();
         $this->defineErrorType();
@@ -91,22 +90,4 @@
                     DB_TYPE . "://" . DB_USER . ":" . DB_PASSWORD . "@"
                     . DB_SERVER . ":" .DB_PORT . "/" . DB_NAME);
-        }
-    }
-
-    /**
-     * エラーレベル設定を行う.
-     *
-     * ・推奨値
-     *   開発時 - E_ALL
-     *   運用時 - E_ALL & ~E_NOTICE
-     *
-     * @access protected
-     * @return void
-     */
-    function setErrorReporting() {
-        error_reporting(E_ALL & ~E_NOTICE);
-        // PHP 5.3.0対応
-        if (error_reporting() > 6143) {
-            error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
         }
     }
