Index: /branches/version-2_5-dev/data/class/SC_Response.php
===================================================================
--- /branches/version-2_5-dev/data/class/SC_Response.php	(revision 19913)
+++ /branches/version-2_5-dev/data/class/SC_Response.php	(revision 19922)
@@ -40,49 +40,4 @@
     var $header = array();
 
-    var $statusTexts = array(
-            '100' => 'Continue',
-            '101' => 'Switching Protocols',
-            '200' => 'OK',
-            '201' => 'Created',
-            '202' => 'Accepted',
-            '203' => 'Non-Authoritative Information',
-            '204' => 'No Content',
-            '205' => 'Reset Content',
-            '206' => 'Partial Content',
-            '300' => 'Multiple Choices',
-            '301' => 'Moved Permanently',
-            '302' => 'Found',
-            '303' => 'See Other',
-            '304' => 'Not Modified',
-            '305' => 'Use Proxy',
-            '306' => '(Unused)',
-            '307' => 'Temporary Redirect',
-            '400' => 'Bad Request',
-            '401' => 'Unauthorized',
-            '402' => 'Payment Required',
-            '403' => 'Forbidden',
-            '404' => 'Not Found',
-            '405' => 'Method Not Allowed',
-            '406' => 'Not Acceptable',
-            '407' => 'Proxy Authentication Required',
-            '408' => 'Request Timeout',
-            '409' => 'Conflict',
-            '410' => 'Gone',
-            '411' => 'Length Required',
-            '412' => 'Precondition Failed',
-            '413' => 'Request Entity Too Large',
-            '414' => 'Request-URI Too Long',
-            '415' => 'Unsupported Media Type',
-            '416' => 'Requested Range Not Satisfiable',
-            '417' => 'Expectation Failed',
-            '500' => 'Internal Server Error',
-            '501' => 'Not Implemented',
-            '502' => 'Bad Gateway',
-            '503' => 'Service Unavailable',
-            '504' => 'Gateway Timeout',
-            '505' => 'HTTP Version Not Supported',
-        );
-
-
     /**
      *
@@ -104,5 +59,4 @@
     function sendHeader() {
         // HTTPのヘッダ
-        //        header('HTTP/1.1 '.$this->statuscode.' '.$this->statusTexts[$this->statuscode]);
         foreach ($this->header as $name => $head){
             header($name.': '.$head);
@@ -125,8 +79,4 @@
     function containsHeader($name) {
         return isset($this->header[$name]);
-    }
-
-    function sendError($errorcode) {
-        header('HTTP/1.1 '.$errorcode.' '.$this->statusTexts[$errorcode]);
     }
 
Index: /branches/version-2_5-dev/data/class/pages/admin/LC_Page_Admin.php
===================================================================
--- /branches/version-2_5-dev/data/class/pages/admin/LC_Page_Admin.php	(revision 19857)
+++ /branches/version-2_5-dev/data/class/pages/admin/LC_Page_Admin.php	(revision 19922)
@@ -49,5 +49,5 @@
         if(count($allow_hosts) > 0){
             if(array_search($_SERVER["REMOTE_ADDR"],$allow_hosts) === FALSE){
-                SC_Response::sendError("403");
+                SC_Response::sendHttpStatus(403);
                 exit;
             }
