Revision | 6a7d309deb02afffe0fd7c3015096e89687d648e (tree) |
---|---|
Zeit | 2003-03-24 00:54:37 |
Autor | panda <panda> |
Commiter | panda |
Release Candidate 1. set error_reporting only show E_ERROR|E_PARSE.
@@ -2,10 +2,15 @@ | ||
2 | 2 | ///////////////////////////////////////////////// |
3 | 3 | // PukiWiki - Yet another WikiWikiWeb clone. |
4 | 4 | // |
5 | -// $Id: init.php,v 1.38 2003/03/10 11:34:10 panda Exp $ | |
5 | +// $Id: init.php,v 1.39 2003/03/23 15:54:37 panda Exp $ | |
6 | 6 | // |
7 | 7 | |
8 | 8 | ///////////////////////////////////////////////// |
9 | +// 初期設定 (エラー出力レベル) | |
10 | +// (E_WARNING | E_NOTICE)を除外しています。 | |
11 | +error_reporting(E_ERROR | E_PARSE); | |
12 | + | |
13 | +///////////////////////////////////////////////// | |
9 | 14 | // 初期設定 (文字エンコード、言語) |
10 | 15 | define('SOURCE_ENCODING','EUC-JP'); |
11 | 16 | define('LANG','ja'); |
@@ -18,7 +23,7 @@ define('INI_FILE','./pukiwiki.ini.php'); | ||
18 | 23 | |
19 | 24 | ///////////////////////////////////////////////// |
20 | 25 | // 初期設定 (バージョン/著作権) |
21 | -define('S_VERSION','1.4pre6'); | |
26 | +define('S_VERSION','1.4rc1'); | |
22 | 27 | define('S_COPYRIGHT',' |
23 | 28 | <strong>"PukiWiki" '.S_VERSION.'</strong> Copyright © 2001,2002,2003 |
24 | 29 | <a href="http://pukiwiki.org">PukiWiki Developers Team</a>. |