Changeset 321


Ignore:
Timestamp:
2007/02/22 09:33:12 (17 years ago)
Author:
uehara
Message:
 
Location:
branches/dev/data/conf
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/dev/data/conf/conf.php

    r316 r321  
    1111require_once($CONF_PHP_PATH ."/../install.inc"); 
    1212require_once($CONF_PHP_PATH ."/core.php" ); 
     13 
     14//-------------------------------------------------------------------------------------------------------- 
     15// ¥¨¥é¡¼¥ì¥Ù¥ëÀßÄê 
     16$arrErrorReport = array( 
     17    'E_ERROR'             => 1, 
     18    'E_WARNING'           => 2, 
     19    'E_PARSE'             => 4, 
     20    'E_NOTICE'            => 8, 
     21    'E_CORE_ERROR'        => 16, 
     22    'E_CORE_WARNING'      => 32, 
     23    'E_COMPILE_ERROR'     => 64, 
     24    'E_COMPILE_WARNING'   =>128, 
     25    'E_USER_ERROR'        => 256, 
     26    'E_USER_WARNING'      => 512,  
     27    'E_USER_NOTICE'       => 1024, 
     28    'E_ALL'               => 6143, 
     29    'E_STRICT'            => 2048, 
     30    'E_RECOVERABLE_ERROR' => 4096   
     31); 
     32error_reporting(E_NOTICE); 
     33 
     34//-------------------------------------------------------------------------------------------------------- 
    1335 
    1436//-------------------------------------------------------------------------------------------------------- 
  • branches/dev/data/conf/core.php

    r320 r321  
    3131define ("AUTH_MAGIC", "31eafcbd7a81d7b401a7fdc12bba047c02d1fae6"); 
    3232 
    33 // ¥¨¥é¡¼¥ì¥Ù¥ë(NOTICE) 
    34 error_reporting(8); 
    35  
    3633?> 
Note: See TracChangeset for help on using the changeset viewer.