OSDN Git Service

require_onceは対象ファイルが読めないとエラーを吐く
authorarino <arino>
Sun, 27 Jul 2003 13:50:49 +0000 (22:50 +0900)
committerarino <arino>
Sun, 27 Jul 2003 13:50:49 +0000 (22:50 +0900)
mbstring.php

index c61f1ef..ebc1be8 100644 (file)
@@ -2,7 +2,7 @@
 /////////////////////////////////////////////////
 // PukiWiki - Yet another WikiWikiWeb clone.
 //
-// $Id: mbstring.php,v 1.4 2003/07/08 07:03:03 arino Exp $
+// $Id: mbstring.php,v 1.5 2003/07/27 13:50:49 arino Exp $
 //
 
 /*
  *
  */
 
-require_once('jcode_1.34/jcode_wrapper.php');
-
+if (is_readable('jcode_1.34/jcode_wrapper.php'))
+{
+       require_once('jcode_1.34/jcode_wrapper.php');
+}
 if (!function_exists('jcode_convert_encoding'))
 {
        die_message('Multibyte functions cannot be used. Please read "mbstring.php" for an additional installation procedure.');