Changeset 16977


Ignore:
Timestamp:
2008/01/13 21:20:09 (16 years ago)
Author:
naka
Message:

DEBUG_MODE初期値を0→falseに変更

Location:
branches/feature-module-update
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/mtb_constants_init.php

    r16862 r16977  
    129129define('REVIEW_REGIST_MAX', 5); 
    130130/** デバッグモード(true:sfPrintRやDBのエラーメッセージを出力する、false:出力しない) */ 
    131 define('DEBUG_MODE', 0); 
     131define('DEBUG_MODE', false); 
    132132/** 管理ユーザID(メンテナンス用表示されない。) */ 
    133133define('ADMIN_ID', "1"); 
  • branches/feature-module-update/html/install/sql/insert_data.sql

    r16970 r16977  
    798798INSERT INTO mtb_constants VALUES ('ORDER_STATUS_MAX','50',70,'管理画面ステータス一覧表示件数'); 
    799799INSERT INTO mtb_constants VALUES ('REVIEW_REGIST_MAX','5',71,'フロントレビュー書き込み最大数'); 
    800 INSERT INTO mtb_constants VALUES ('DEBUG_MODE','0',72,'デバッグモード(true:sfPrintRやDBのエラーメッセージを出力する、false:出力しない)'); 
     800INSERT INTO mtb_constants VALUES ('DEBUG_MODE','false',72,'デバッグモード(true:sfPrintRやDBのエラーメッセージを出力する、false:出力しない)'); 
    801801INSERT INTO mtb_constants VALUES ('ADMIN_ID','"1"',73,'管理ユーザID(メンテナンス用表示されない。)'); 
    802802INSERT INTO mtb_constants VALUES ('CUSTOMER_CONFIRM_MAIL','0',74,'会員登録時に仮会員確認メールを送信するか(true:仮会員、false:本会員)'); 
Note: See TracChangeset for help on using the changeset viewer.