diff --dos -uNr kuzuhaphp.orig/bbs.php kuzuhaphp/bbs.php --- kuzuhaphp.orig/bbs.php Sat Jun 21 10:16:54 2003 +++ kuzuhaphp/bbs.php Fri Apr 01 15:20:20 2005 @@ -242,6 +242,9 @@ if ($CONF['ADMINPOST'] == '') { require_once(PHP_BBSADMIN); $bbsadmin = new Bbsadmin(); + $bbsadmin->procForm(); + $bbsadmin->refcustom(); + $bbsadmin->setusersession(); if ($_POST['ad'] == 'ps') { $bbsadmin->prtpass($_POST['ps']); } @@ -475,6 +478,7 @@ * @return String HTMLデータ */ function prthtmlhead($title = "", $customhead = "", $customstyle = "") { + $this->t->clearTemplate('header'); $this->t->addVars('header', array( 'TITLE' => $title, 'CUSTOMHEAD' => $customhead, @@ -646,7 +650,6 @@ $message['ENVADDR'] = ''; $message['ENVUA'] = ''; $message['ENVBR'] = ''; - $message['ENVLIST'] = ''; if ($this->c['IPPRINT'] or $this->c['UAPRINT']) { if ($this->c['IPPRINT']) { $message['ENVADDR'] = $message['PHOST']; @@ -658,7 +661,13 @@ $message['ENVBR'] = '
'; } if ($message['ENVADDR'] or $message['ENVUA']) { - $message['ENVLIST'] = $this->c['TMPL_ENVLIST']; + $this->t->clearTemplate('envlist'); + $this->t->setAttribute("envlist", "visibility", "visible"); + $this->t->addVars('envlist', array( + 'ENVADDR' => $message['ENVADDR'], + 'ENVUA' => $message['ENVUA'], + 'ENVBR' => $message['ENVBR'], + )); } } @@ -696,7 +705,7 @@ * @return String メッセージのHTMLデータ */ function prtmessage($message, $mode = 0, $tlog = '') { - $this->setmessage($message, $mode = 0, $tlog); + $this->setmessage($message, $mode, $tlog); $prtmessage = $this->t->getParsedTemplate('message'); return $prtmessage; } @@ -844,7 +853,7 @@ $this->f['g'] ? $this->c['GZIPU'] = 1 : $this->c['GZIPU'] = 0; $this->f['loff'] ? $this->c['LINKOFF'] = 1 : $this->c['LINKOFF'] = 0; $this->f['hide'] ? $this->c['HIDEFORM'] = 1 : $this->c['HIDEFORM'] = 0; - $this->f['si'] ? $this->c['SHOWIMG'] = 1 : $this->c['SHOWIMG'] = 0; + $this->f['sim'] ? $this->c['SHOWIMG'] = 1 : $this->c['SHOWIMG'] = 0; if ($this->f['m'] == 'c') { $this->f['fw'] ? $this->c['FOLLOWWIN'] = 1 : $this->c['FOLLOWWIN'] = 0; $this->f['rt'] ? $this->c['RELTYPE'] = 1 : $this->c['RELTYPE'] = 0; @@ -1468,7 +1477,10 @@ function msgsearchlist($mode) { if ($this->f['ff']) { - $fh = @fopen($this->c['OLDLOGFILEDIR'] . $this->f['ff'], "rb"); + $fh = NULL; + if (preg_match("/^[\w.]+$/", $this->f['ff'])) { + $fh = @fopen($this->c['OLDLOGFILEDIR'] . $this->f['ff'], "rb"); + } if (!$fh) { $this->prterror ("{$this->f['ff']}を開けませんでした。"); } @@ -1480,8 +1492,7 @@ if ($fh) { $linecount = 0; $threadstart = FALSE; - while (!feof ($fh)) { - $logline = Func::fgetline(&$fh); + while (($logline = Func::fgetline($fh)) !== FALSE) { if ($threadstart) { $linecount++; } @@ -1919,12 +1930,12 @@ $this->prterror ('参照記事が見つかりません。'); } $refmessage = $this->getmessage($refdata[0]); - $refmessage['wdate'] = Func::getdatestr($refmessage['ndate'], $this->c['DATEFORMAT']); - $message['MSG'] .= "\r\r参考:{$refmessage['wdate']}"; + $refmessage['WDATE'] = Func::getdatestr($refmessage['NDATE'], $this->c['DATEFORMAT']); + $message['MSG'] .= "\r\r参考:{$refmessage['WDATE']}"; # 簡易自作自演防止機能 if ($this->c['IPREC'] and $this->c['SHOW_SELFFOLLOW'] - and $refmessage['phost'] != '' and $refmessage['phost'] == $message['PHOST']) { + and $refmessage['PHOST'] != '' and $refmessage['PHOST'] == $message['PHOST']) { $message['USER'] .= '(自己レス)'; } } @@ -1962,8 +1973,8 @@ fseek ($fh, 0, 0); $logdata = array(); - while (!feof ($fh)) { - $logdata[] = Func::fgetline(&$fh); + while (($logline = Func::fgetline($fh)) !== FALSE) { + $logdata[] = $logline; } $posterr = 0; @@ -2638,13 +2649,18 @@ return $value; } - $value = strtr($value, "+", " "); + #$value = strtr($value, "+", " "); + + if (get_magic_quotes_gpc()) { + $value = stripslashes($value); + } # 一時的にEUCに変換して文字化けを回避 if (!preg_match("/^\w+$/", $value)) { - $value_euc = JcodeConvert($value, 2, 1); - $value_euc = htmlentities($value_euc, ENT_QUOTES, 'EUC-JP'); - $value = JcodeConvert($value_euc, 1, 2); + #$value_euc = JcodeConvert($value, 2, 1); + #$value_euc = htmlentities($value_euc, ENT_QUOTES, 'EUC-JP'); + #$value = JcodeConvert($value_euc, 1, 2); + $value = htmlspecialchars($value, ENT_QUOTES); } $value = str_replace("\015\012", "\015", $value); @@ -2652,9 +2668,9 @@ $value = str_replace("\015$", "", $value); $value = str_replace(",", ",", $value); - $value = str_replace("\\"", """, $value); + #$value = str_replace("\\"", """, $value); - $value = stripslashes($value); + #$value = stripslashes($value); return $value; } @@ -2675,10 +2691,12 @@ # 一時的にEUCに変換して文字化けを回避 if (!preg_match("/^\w+$/", $value)) { - $value_euc = JcodeConvert($value, 2, 1); - $value_euc = strtr($value_euc, array_flip(get_html_translation_table(HTML_ENTITIES))); - $value_euc = preg_replace("/&#([0-9]+);/me", "chr('\\1')", $value_euc); - $value = JcodeConvert($value_euc, 1, 2); + #$value_euc = JcodeConvert($value, 2, 1); + #$value_euc = strtr($value_euc, array_flip(get_html_translation_table(HTML_ENTITIES))); + #$value_euc = preg_replace("/&#([0-9]+);/me", "chr('\\1')", $value_euc); + #$value = JcodeConvert($value_euc, 1, 2); + $value = strtr($value, array_flip(get_html_translation_table(HTML_ENTITIES))); + $value = preg_replace("/&#([0-9]+);/me", "chr('\\1')", $value); } return $value; } @@ -2855,10 +2873,11 @@ */ function fgetline(&$fh, $maxbuffersize = 16000) { $line = ''; - while (!feof($fh) and strrpos($line, "\n") === FALSE) { + do { $line .= fgets($fh, $maxbuffersize); - } - return $line; + } while (strrpos($line, "\n") === FALSE and !feof($fh)); + + return strlen ($line) == 0 ? FALSE : $line; } diff --dos -uNr kuzuhaphp.orig/conf.php kuzuhaphp/conf.php --- kuzuhaphp.orig/conf.php Sat Jun 21 10:16:54 2003 +++ kuzuhaphp/conf.php Fri Apr 01 15:20:20 2005 @@ -20,7 +20,7 @@ #------------------------- ファイルとディレクトリ ------------------------- # ログファイル名 - 'LOGFILENAME' => './bbs2.log', + 'LOGFILENAME' => './bbs.log', # 過去ログ保存用ディレクトリの名前 # (最後に/を入れてください。空の場合は過去ログを保存しません) @@ -274,21 +274,21 @@ ', # メッセージテンプレート - 'TMPL_MSG' => ' -
- {val title}  投稿者:{val user}  -  投稿日:{val wdate}  - {val btn} -
-
{val msg}
-
-{val envlist}
- -
-', +# 'TMPL_MSG' => ' +#
+# {val title}  投稿者:{val user}  +#  投稿日:{val wdate}  +# {val btn} +#
+#
{val msg}
+#
+#{val envlist}
+# +#
+#', # 環境変数表示テンプレート - 'TMPL_ENVLIST' => "
{val envaddr}{val envbr}{val envua}
\n", +# 'TMPL_ENVLIST' => "
{val envaddr}{val envbr}{val envua}
\n", #------------------------- アクセス制限など ------------------------- diff --dos -uNr kuzuhaphp.orig/sub/bbsadmin.php kuzuhaphp/sub/bbsadmin.php --- kuzuhaphp.orig/sub/bbsadmin.php Sat Jun 21 10:16:54 2003 +++ kuzuhaphp/sub/bbsadmin.php Fri Apr 01 15:20:20 2005 @@ -191,8 +191,8 @@ fseek ($fh, 0, 0); $logdata = array(); - while (!feof ($fh)) { - $logdata[] = Func::fgetline(&$fh); + while (($logline = Func::fgetline($fh)) !== FALSE) { + $logdata[] = $logline; } $killntimes = array(); @@ -251,8 +251,7 @@ if ($this->c['OLDLOGFMT']) { $needle = $killntimes[$killid] . "," . $killid . ","; - while (!feof ($fh)) { - $logline = Func::fgetline(&$fh); + while (($logline = Func::fgetline($fh)) !== FALSE) { if (!$hit and strpos($logline, $needle) !== FALSE and strpos($logline, $needle) == 0) { $hit = TRUE; } @@ -264,8 +263,7 @@ else { $needle = "
"; $flgbuffer = FALSE; - while (!feof ($fh)) { - $htmlline = Func::fgetline(&$fh); + while (($htmlline = Func::fgetline($fh)) !== FALSE) { # メッセージの開始 if (!$hit and strpos($htmlline, $needle) !== FALSE) { diff --dos -uNr kuzuhaphp.orig/sub/bbsezweb.php kuzuhaphp/sub/bbsezweb.php --- kuzuhaphp.orig/sub/bbsezweb.php Sat Jun 21 10:16:54 2003 +++ kuzuhaphp/sub/bbsezweb.php Fri Apr 01 15:20:20 2005 @@ -34,29 +34,29 @@ $GLOBALS['CONF_HDML'] = array( # 掲示板の名前 - 'bbstitle' => 'ez@PHP', + 'BBSTITLE' => 'ez@PHP', # 1画面に表示するメッセージの表示数 - 'msgdisp' => 10, + 'MSGDISP' => 10, # ページサイズ制限 # 1ページの容量が指定したバイト数(目安)を超えないように表示メッセージ数が調整されます - 'ctrl_maxpagesize' => 2200, + 'CTRL_MAXPAGESIZE' => 2200, # メッセージサイズ制限1 # メッセージが指定したバイト数を超えた場合は一部省略します(行単位) - 'ctrl_maxmsgsize' => 500, + 'CTRL_MAXMSGSIZE' => 500, # メッセージサイズ制限2 # メッセージが指定したバイト数を超えた場合は完全に表示しません - 'ctrl_limitmsgsize' => 1200, + 'CTRL_LIMITMSGSIZE' => 1200, # メッセージ行数制限 # メッセージが指定行数を超えた場合は一部省略します - 'ctrl_maxmsgline' => 10, + 'CTRL_MAXMSGLINE' => 10, # メッセージテンプレート - 'tmpl_msg' => '
{val title}{val btn}{val wdate} {val user}
{val msg}
', + 'TMPL_MSG' => '
{val TITLE}{val BTN}{val WDATE} {val USER}
{val MSG}
', ); @@ -107,7 +107,7 @@ $this->setuserenv(); # 端末制限 - if (@$this->c['restrict_mobileip']) { + if (@$this->c['RESTRICT_MOBILEIP']) { $uatype = Func::get_uatype(TRUE); if ($uatype != 'h') { $this->prterror ('携帯端末以外のIPアドレスからの投稿は禁止されています。'); @@ -183,11 +183,11 @@ */ function prterror($err_message) { $this->sethttpheader(); - print $this->prthtmlhead ($this->c['bbstitle']); + print $this->prthtmlhead ($this->c['BBSTITLE']); print <<<__HDML__ - + - + エラー:{$err_message} __HDML__; @@ -226,8 +226,8 @@ function prthtmlfoot() { $htmlstr = ''; - if (@$this->c['show_prctime'] and @$this->s['start_time']) { - $duration = Func::microtime_diff($this->s['start_time'], microtime()); + if (@$this->c['SHOW_PRCTIME'] and @$this->s['START_TIME']) { + $duration = Func::microtime_diff($this->s['START_TIME'], microtime()); $duration = sprintf("%0.3f", $duration); #$htmlstr .= '('.$duration.'秒)'; } @@ -256,7 +256,7 @@ */ function setusersession() { parent::setusersession(); - $this->s['tv'] = "&tv=" . base_convert(CURRENT_TIME, 10, 32); + $this->s['TV'] = "&tv=" . base_convert(CURRENT_TIME, 10, 32); } @@ -275,21 +275,21 @@ # カウンタ $counter = ''; - if ($this->c['show_counter']) { + if ($this->c['SHOW_COUNTER']) { $counter = $this->counter(); } $mbrcount = $this->mbrcount(); # HTMLヘッダ部分出力 $this->sethttpheader(); - print $this->prthtmlhead ($this->c['bbstitle']); + print $this->prthtmlhead ($this->c['BBSTITLE']); $action_nextpage = ''; # ナビゲートボタン if ($eindex > 0 and $eindex < $lastindex) { - $query_nextpage = "?m=h&hm=p&p={$this->s['toppostid']}&b={$eindex}&reload=true{$this->s['tv']}"; + $query_nextpage = "?m=h&hm=p&p={$this->s['TOPPOSTID']}&b={$eindex}&reload=true{$this->s['TV']}"; if (@$this->f['u']) { $query_nextpage .= "&u=".urlencode($this->f['u']); } @@ -303,18 +303,18 @@ # フォーム部分 print <<<__HDML__ - - + + $action_nextpage -R +R __HDML__; - if ($this->c['show_readnewbtn']) { + if ($this->c['SHOW_READNEWBTN']) { print "s['toppostid']}&readnew=true{$this->s['tv']}\">未"; + ." dest=\"?m=h&hm=p&p={$this->s['TOPPOSTID']}&readnew=true{$this->s['TV']}\">未"; } if (1) { print "s['tv']}\">投"; + ." dest=\"?m=h&hm=p&write=true{$this->s['TV']}\">投"; } print "{$mbrcount}名
"; @@ -368,86 +368,86 @@ return; } - if (strlen($message['msg']) > $this->c['ctrl_limitmsgsize']) { + if (strlen($message['MSG']) > $this->c['CTRL_LIMITMSGSIZE']) { return; } - $message['wdate'] = date("H:i:s", $message['ndate']); + $message['WDATE'] = date("H:i:s", $message['NDATE']); # 参考の消去 - $message['msg'] = preg_replace("/]+>参考:[^<]+<\/a>/i", "", $message['msg'], 1); + $message['MSG'] = preg_replace("/]+>参考:[^<]+<\/a>/i", "", $message['MSG'], 1); # タグの消去 - $message['msg'] = preg_replace("/<[^>]+>/", "", $message['msg']); - $message['user'] = preg_replace("/<[^>]+>/", "", $message['user']); + $message['MSG'] = preg_replace("/<[^>]+>/", "", $message['MSG']); + $message['USER'] = preg_replace("/<[^>]+>/", "", $message['USER']); - if ($mode == 0 or ($mode == 1 and $this->c['oldlogbtn'])) { + if ($mode == 0 or ($mode == 1 and $this->c['OLDLOGBTN'])) { # フォロー投稿ボタン - $message['btnfollow'] = ''; - if ($this->c['bbsmode_adminonly'] != 1) { - $message['btnfollow'] = "c['txtfollow']}\" task=\"go\" dest=\"" - ."?m=h&hm=f&s={$message['postid']}&p={$this->s['toppostid']}\">{$this->c['txtfollow']}"; + $message['BTNFOLLOW'] = ''; + if ($this->c['BBSMODE_ADMINONLY'] != 1) { + $message['BTNFOLLOW'] = "c['TXTFOLLOW']}\" task=\"go\" dest=\"" + ."?m=h&hm=f&s={$message['POSTID']}&p={$this->s['TOPPOSTID']}\">{$this->c['TXTFOLLOW']}"; } # 投稿者検索ボタン - $message['btnauthor'] = ""; - if ($message['user'] != $this->c['anony_name'] and $this->c['bbsmode_adminonly'] != 1) { - $message['btnauthor'] = "c['txtauthor']}\" task=\"go\" dest=\"" - ."?m=h&hm=s&s=". urlencode(preg_replace("/<[^>]*>/", '', $message['user'])) ."\">{$this->c['txtauthor']}"; + $message['BTNAUTHOR'] = ""; + if ($message['USER'] != $this->c['ANONY_NAME'] and $this->c['BBSMODE_ADMINONLY'] != 1) { + $message['BTNAUTHOR'] = "c['TXTAUTHOR']}\" task=\"go\" dest=\"" + ."?m=h&hm=s&s=". urlencode(preg_replace("/<[^>]*>/", '', $message['USER'])) ."\">{$this->c['TXTAUTHOR']}"; } # スレッド表示ボタン - if (!$message['thread']) { - $message['thread'] = $message['postid']; + if (!$message['THREAD']) { + $message['THREAD'] = $message['POSTID']; } - $message['btnthread'] = ''; - if ($this->c['bbsmode_adminonly'] != 1) { - $message['btnthread'] = "c['txtthread']}\" task=\"go\" dest=\"?m=h&hm=t&s={$message['thread']}\">{$this->c['txtthread']}"; + $message['BTNTHREAD'] = ''; + if ($this->c['BBSMODE_ADMINONLY'] != 1) { + $message['BTNTHREAD'] = "c['TXTTHREAD']}\" task=\"go\" dest=\"?m=h&hm=t&s={$message['THREAD']}\">{$this->c['TXTTHREAD']}"; } # ボタンの統合 - $message['btn'] = "{$message['btnfollow']} {$message['btnthread']}"; + $message['BTN'] = "{$message['BTNFOLLOW']} {$message['BTNTHREAD']}"; } # メールアドレス - if (@$message['mail']) { - $message['user'] = "{$message['user']}"; + if (@$message['MAIL']) { + $message['USER'] = "{$message['USER']}"; } # 匿名の投稿者名は非表示 - if ($message['user'] == $this->c['anony_name']) { - $message['user'] = ''; + if ($message['USER'] == $this->c['ANONY_NAME']) { + $message['USER'] = ''; } # 匿名宛フォロー記事の題名は非表示 - if ($message['title'] == ">{$this->c['anony_name']}") { - $message['title'] = ''; + if ($message['TITLE'] == ">{$this->c['ANONY_NAME']}") { + $message['TITLE'] = ''; } # 二つ前のレスを消去 - #$message['msg'] = preg_replace("/(^|\r)> > [^\r]*\r/", "", $message['msg']); + #$message['MSG'] = preg_replace("/(^|\r)> > [^\r]*\r/", "", $message['MSG']); - $message['msg'] = trim ($message['msg']); + $message['MSG'] = trim ($message['MSG']); # 省略処理(行数とバイト数で判定。1行目と後ろの行を残して中略する形式) if ($abbreviate) { - $messagelines = explode("\r", $message['msg']); - if (count($messagelines) > $this->c['ctrl_maxmsgline'] or strlen ($message['msg']) > $this->c['ctrl_maxmsgsize']) { - $message['msg'] = array_shift($messagelines); - $testbuffer = $message['msg']; + $messagelines = explode("\r", $message['MSG']); + if (count($messagelines) > $this->c['CTRL_MAXMSGLINE'] or strlen ($message['MSG']) > $this->c['CTRL_MAXMSGSIZE']) { + $message['MSG'] = array_shift($messagelines); + $testbuffer = $message['MSG']; $abbcount = 0; # 行数判定 - if (count($messagelines) > $this->c['ctrl_maxmsgline']) { - $abbcount = count($messagelines) - $this->c['ctrl_maxmsgline'] + 1; - array_splice($messagelines, 0, count($messagelines) - $this->c['ctrl_maxmsgline'] + 1); + if (count($messagelines) > $this->c['CTRL_MAXMSGLINE']) { + $abbcount = count($messagelines) - $this->c['CTRL_MAXMSGLINE'] + 1; + array_splice($messagelines, 0, count($messagelines) - $this->c['CTRL_MAXMSGLINE'] + 1); } # バイト数判定 for ($i = count($messagelines)-1; $i > 0; $i--) { $testbuffer .= $messagelines[$i]; - if (strlen($testbuffer) > $this->c['ctrl_maxmsgsize']) { + if (strlen($testbuffer) > $this->c['CTRL_MAXMSGSIZE']) { $abbcount += $i + 1; array_splice($messagelines, 0, $i + 1); break; @@ -456,20 +456,20 @@ # 省略リンク if ($abbcount > 0) { - $message['msg'] .= "\r[".$abbcount."行省略]"; + $message['MSG'] .= "\r[".$abbcount."行省略]"; } - $message['msg'] .= "\r" . implode("\r", $messagelines); + $message['MSG'] .= "\r" . implode("\r", $messagelines); } } # 画像BBSの画像を非表示 - $message['msg'] = Func::conv_imgtag($message['msg']); + $message['MSG'] = Func::conv_imgtag($message['MSG']); - $message['msg'] = str_replace("\r", '
', $message['msg']); + $message['MSG'] = str_replace("\r", '
', $message['MSG']); $this->hdml_escape($message); # メッセージ表示内容定義 - $prtmessage = $this->c['tmpl_msg']; + $prtmessage = $this->c['TMPL_MSG']; while (preg_match('/\{val (\w+)\}/', $prtmessage, $match)) { $prtmessage = str_replace($match[0], @$message[$match[1]], $prtmessage); } @@ -502,7 +502,7 @@ # HTMLヘッダ部分出力 $this->sethttpheader(); - print $this->prthtmlhead ($this->c['bbstitle']); + print $this->prthtmlhead ($this->c['BBSTITLE']); print <<<__HDML__ @@ -510,9 +510,9 @@ - -投稿 + +投稿 消す
内容$(v:esc) @@ -557,7 +557,7 @@ $this->prterror ( 'パラメータがありません。' ); } - $result = $this->searchmessage('postid', @$this->f['s']); + $result = $this->searchmessage('POSTID', @$this->f['s']); if (!$result) { $this->prterror ( '指定されたメッセージが見つかりません。' ); @@ -566,11 +566,11 @@ $message = $this->getmessage($result[0]); $this->sethttpheader(); - print $this->prthtmlhead ($this->c['bbstitle']); + print $this->prthtmlhead ($this->c['BBSTITLE']); print <<<__HDML__ - + - + __HDML__; print $this->prtmessage($message, 0, 0, FALSE); print ''; @@ -599,11 +599,11 @@ } $this->sethttpheader(); - print $this->prthtmlhead ($this->c['bbstitle']); + print $this->prthtmlhead ($this->c['BBSTITLE']); print <<<__HDML__ - + - + __HDML__; $result = $this->msgsearchlist($mode); @@ -625,7 +625,7 @@ $msgrange = 0; for ($i = 0; $i < count($result); $i++) { $testbuffer .= $this->prtmessage($result[$i], $mode); - if (strlen($testbuffer) > $this->c['ctrl_maxpagesize'] - 1000) { + if (strlen($testbuffer) > $this->c['CTRL_MAXPAGESIZE'] - 1000) { $eindex = $bindex + $i; $abbreviated = TRUE; break; @@ -641,7 +641,7 @@ $success = count($result); if ($abbreviated) { - print 's['tv']}\">>"; + print 's['TV']}\">>"; } print ''; @@ -661,11 +661,11 @@ function prthelp() { $this->sethttpheader(); - print $this->prthtmlhead ($this->c['bbstitle']); + print $this->prthtmlhead ($this->c['BBSTITLE']); print <<<__HDML__ - + - + アクセスキー一覧

[5] 次ページ
[7] リロード
[9] 投稿
__HDML__; diff --dos -uNr kuzuhaphp.orig/sub/bbsimode.php kuzuhaphp/sub/bbsimode.php --- kuzuhaphp.orig/sub/bbsimode.php Sat Jun 21 10:16:54 2003 +++ kuzuhaphp/sub/bbsimode.php Fri Apr 01 15:20:20 2005 @@ -28,51 +28,51 @@ $GLOBALS['CONF_IMODE'] = array( # 掲示板の名前 - 'bbstitle' => 'i@PHP', + 'BBSTITLE' => 'i@PHP', # 1画面に表示するメッセージの表示数 - 'msgdisp' => 10, + 'MSGDISP' => 10, # ページサイズ制限 # 1ページの容量が指定したバイト数(目安)を超えないように表示メッセージ数が調整されます - 'ctrl_maxpagesize' => 4000, + 'CTRL_MAXPAGESIZE' => 4000, # メッセージサイズ制限1 # メッセージが指定したバイト数を超えた場合は一部省略します(行単位) - 'ctrl_maxmsgsize' => 800, + 'CTRL_MAXMSGSIZE' => 800, # メッセージサイズ制限2 # メッセージが指定したバイト数を超えた場合は完全に表示しません - 'ctrl_limitmsgsize' => 3000, + 'CTRL_LIMITMSGSIZE' => 3000, # メッセージ行数制限 # メッセージが指定行数を超えた場合は一部省略します - 'ctrl_maxmsgline' => 10, + 'CTRL_MAXMSGLINE' => 10, # 背景色 - 'c_background' => '004040', + 'C_BACKGROUND' => '004040', # テキスト色 - 'c_text' => 'ffffff', + 'C_TEXT' => 'ffffff', # リンク色 - 'c_a_color' => 'cccccc', + 'C_A_COLOR' => 'cccccc', # 引用メッセージの色 # (色を変えない場合は空にしてください) - 'c_qmsg' => 'cccccc', + 'C_QMSG' => 'cccccc', # エラーメッセージの色 - 'c_error' => 'ffffff', + 'C_ERROR' => 'ffffff', # フォロー投稿画面ボタンに表示する文字 - 'txtfollow' => '■', + 'TXTFOLLOW' => '■', # スレッド表示ボタンに表示する文字 - 'txtthread' => '◆', + 'TXTTHREAD' => '◆', # メッセージテンプレート - 'tmpl_msg' => "{val title}{val btn}{val wdate} {val user}\r{val msg}\r\r", + 'TMPL_MSG' => "{val TITLE}{val BTN}{val WDATE} {val USER}\r{val MSG}\r\r", ); @@ -122,7 +122,7 @@ $this->setuserenv(); # 端末制限 - if (@$this->c['restrict_mobileip']) { + if (@$this->c['RESTRICT_MOBILEIP']) { $uatype = Func::get_uatype(TRUE); if ($uatype != 'i') { $this->prterror ('携帯端末以外のIPアドレスからの投稿は禁止されています。'); @@ -200,7 +200,7 @@ */ function prterror($err_message) { $this->sethttpheader(); - print $this->prthtmlhead ($this->c['bbstitle']); + print $this->prthtmlhead ($this->c['BBSTITLE']); print "エラー:$err_message"; print $this->prthtmlfoot (); $this->destroy(); @@ -222,7 +222,7 @@ */ function prthtmlhead($title = "", $customhead = "") { $htmlstr = "$title" - . "c['c_background']}\" text=\"#{$this->c['c_text']}\" link=\"#{$this->c['c_a_color']}\">"; + . "c['C_BACKGROUND']}\" text=\"#{$this->c['C_TEXT']}\" link=\"#{$this->c['C_A_COLOR']}\">"; return $htmlstr; } @@ -239,8 +239,8 @@ function prthtmlfoot() { $htmlstr = ''; - if (@$this->c['show_prctime'] and @$this->s['start_time']) { - $duration = Func::microtime_diff($this->s['start_time'], microtime()); + if (@$this->c['SHOW_PRCTIME'] and @$this->s['START_TIME']) { + $duration = Func::microtime_diff($this->s['START_TIME'], microtime()); $duration = sprintf("%0.3f", $duration); $htmlstr .= '('.$duration.'秒)'; } @@ -265,35 +265,35 @@ # カウンタ $counter = ''; - if ($this->c['show_counter']) { + if ($this->c['SHOW_COUNTER']) { $counter = $this->counter(); } $mbrcount = ''; - if ($this->c['cntfilename']) { + if ($this->c['CNTFILENAME']) { $mbrcount = $this->mbrcount()."名"; } # HTMLヘッダ部分出力 $this->sethttpheader(); - print $this->prthtmlhead ($this->c['bbstitle']); + print $this->prthtmlhead ($this->c['BBSTITLE']); # フォーム部分 print <<<__IMODE__ -
+ - + __IMODE__; - if ($this->c['show_readnewbtn']) { + if ($this->c['SHOW_READNEWBTN']) { print ''; } - if ($this->c['bbsmode_adminonly'] == 0) { + if ($this->c['BBSMODE_ADMINONLY'] == 0) { print ''; } print <<<__IMODE__ - 件 + 件 $mbrcount __IMODE__; @@ -323,7 +323,7 @@ print @$msgmore; # ナビゲートボタン - if (($eindex > 0 and $eindex < $lastindex) or $this->c['bbsmode_adminonly'] != 0) { + if (($eindex > 0 and $eindex < $lastindex) or $this->c['BBSMODE_ADMINONLY'] != 0) { $formc = @$this->f['c']; $formd = @$this->f['d']; @@ -331,17 +331,17 @@ $formi = @$this->f['i']; print <<<__IMODE__ - + - - + + __IMODE__; # 管理者投稿 - if ($this->c['bbsmode_adminonly'] != 0) { + if ($this->c['BBSMODE_ADMINONLY'] != 0) { print '

'; print ''; } @@ -355,7 +355,7 @@ } print '  '; + . $this->c['CGIURL'] . '?m=i&im=h">?'; print $this->prthtmlfoot (); } @@ -380,14 +380,14 @@ # ページのバイト数を考慮して表示件数を調整する # 未読リロードの場合、記事を遡って省略を行う - if (@$this->f['readnew'] or ($this->s['msgdisp'] == '0' and $bindex == 0)) { + if (@$this->f['readnew'] or ($this->s['MSGDISP'] == '0' and $bindex == 0)) { $testbuffer = ''; $msgrange = 0; for ($i = count($logdatadisp) - 1; $i >= 0; $i--) { $testbuffer .= $this->prtmessage($this->getmessage($logdatadisp[$i], 0, 0)); - if (strlen($testbuffer) > $this->c['ctrl_maxpagesize'] - 1000) { + if (strlen($testbuffer) > $this->c['CTRL_MAXPAGESIZE'] - 1000) { $message = $this->getmessage($logdatadisp[$i + 1]); - $this->s['toppostid'] = $message['postid']; + $this->s['TOPPOSTID'] = $message['POSTID']; $bindex = $eindex - $msgrange + 1; break; } @@ -401,7 +401,7 @@ $msgrange = 0; for ($i = 0; $i < count($logdatadisp); $i++) { $testbuffer .= $this->prtmessage($this->getmessage($logdatadisp[$i], 0, 0)); - if (strlen($testbuffer) > $this->c['ctrl_maxpagesize'] - 1000) { + if (strlen($testbuffer) > $this->c['CTRL_MAXPAGESIZE'] - 1000) { $eindex = $bindex + $i - 1; break; } @@ -440,91 +440,91 @@ return; } - if (strlen($message['msg']) > $this->c['ctrl_limitmsgsize']) { + if (strlen($message['MSG']) > $this->c['CTRL_LIMITMSGSIZE']) { return; } - $message['wdate'] = date("H:i:s", $message['ndate']); + $message['WDATE'] = date("H:i:s", $message['NDATE']); # 参考の消去 - $message['msg'] = preg_replace("/]+>参考:[^<]+<\/a>/i", "", $message['msg'], 1); + $message['MSG'] = preg_replace("/]+>参考:[^<]+<\/a>/i", "", $message['MSG'], 1); - if ($mode == 0 or ($mode == 1 and $this->c['oldlogbtn'])) { + if ($mode == 0 or ($mode == 1 and $this->c['OLDLOGBTN'])) { # フォロー投稿ボタン - $message['btnfollow'] = ''; - if ($this->c['bbsmode_adminonly'] != 1) { - $message['btnfollow'] = "c['cgiurl']}" - ."?m=i&im=f&s={$message['postid']}&p={$this->s['toppostid']}\">{$this->c['txtfollow']}"; + $message['BTNFOLLOW'] = ''; + if ($this->c['BBSMODE_ADMINONLY'] != 1) { + $message['BTNFOLLOW'] = "c['CGIURL']}" + ."?m=i&im=f&s={$message['POSTID']}&p={$this->s['TOPPOSTID']}\">{$this->c['TXTFOLLOW']}"; } # 投稿者検索ボタン - $message['btnauthor'] = ""; - if ($message['user'] != $this->c['anony_name'] and $this->c['bbsmode_adminonly'] != 1) { - $message['btnauthor'] = "c['cgiurl']}" - ."?m=i&im=s&s=". urlencode(preg_replace("/<[^>]*>/", '', $message['user'])) ."\">{$this->c['txtauthor']}"; + $message['BTNAUTHOR'] = ""; + if ($message['USER'] != $this->c['ANONY_NAME'] and $this->c['BBSMODE_ADMINONLY'] != 1) { + $message['BTNAUTHOR'] = "c['CGIURL']}" + ."?m=i&im=s&s=". urlencode(preg_replace("/<[^>]*>/", '', $message['USER'])) ."\">{$this->c['TXTAUTHOR']}"; } # スレッド表示ボタン - if (!$message['thread']) { - $message['thread'] = $message['postid']; + if (!$message['THREAD']) { + $message['THREAD'] = $message['POSTID']; } - $message['btnthread'] = ''; - if ($this->c['bbsmode_adminonly'] != 1) { - $message['btnthread'] = "c['cgiurl']}?m=i&im=t&s={$message['thread']}\">{$this->c['txtthread']}"; + $message['BTNTHREAD'] = ''; + if ($this->c['BBSMODE_ADMINONLY'] != 1) { + $message['BTNTHREAD'] = "c['CGIURL']}?m=i&im=t&s={$message['THREAD']}\">{$this->c['TXTTHREAD']}"; } # ボタンの統合 - $message['btn'] = "{$message['btnfollow']} {$message['btnthread']}"; + $message['BTN'] = "{$message['BTNFOLLOW']} {$message['BTNTHREAD']}"; } # メールアドレス - if (@$message['mail']) { - $message['user'] = "{$message['user']}"; + if (@$message['MAIL']) { + $message['USER'] = "{$message['USER']}"; } # 匿名の投稿者名は非表示 - if ($message['user'] == $this->c['anony_name']) { - $message['user'] = ''; + if ($message['USER'] == $this->c['ANONY_NAME']) { + $message['USER'] = ''; } # 空白の題名は非表示 - if ($message['title'] == " ") { - $message['title'] = ''; + if ($message['TITLE'] == " ") { + $message['TITLE'] = ''; } # 匿名宛フォロー記事の題名は非表示 - if ($message['title'] == ">{$this->c['anony_name']}{$this->c['fsubj']}") { - $message['title'] = ''; + if ($message['TITLE'] == ">{$this->c['ANONY_NAME']}{$this->c['FSUBJ']}") { + $message['TITLE'] = ''; } # 二つ前のレスを消去 - #$message['msg'] = preg_replace("/(^|\r)> > [^\r]*\r/", "", $message['msg']); + #$message['MSG'] = preg_replace("/(^|\r)> > [^\r]*\r/", "", $message['MSG']); # 引用色変更 - $message['msg'] = preg_replace("/(^|\r)(>[^\r]*)/", "$1c['c_qmsg']}\">$2", $message['msg']); - $message['msg'] = str_replace("\rc['c_qmsg']}\">", "\r", $message['msg']); + $message['MSG'] = preg_replace("/(^|\r)(>[^\r]*)/", "$1c['C_QMSG']}\">$2", $message['MSG']); + $message['MSG'] = str_replace("\rc['C_QMSG']}\">", "\r", $message['MSG']); - $message['msg'] = trim ($message['msg']); + $message['MSG'] = trim ($message['MSG']); # 省略処理(行数とバイト数で判定。1行目と後ろの行を残して中略する形式) if ($abbreviate) { - $messagelines = explode("\r", $message['msg']); - if (count($messagelines) > $this->c['ctrl_maxmsgline'] or strlen ($message['msg']) > $this->c['ctrl_maxmsgsize']) { - $message['msg'] = array_shift($messagelines); - $testbuffer = $message['msg']; + $messagelines = explode("\r", $message['MSG']); + if (count($messagelines) > $this->c['CTRL_MAXMSGLINE'] or strlen ($message['MSG']) > $this->c['CTRL_MAXMSGSIZE']) { + $message['MSG'] = array_shift($messagelines); + $testbuffer = $message['MSG']; $abbcount = 0; # 行数判定 - if (count($messagelines) > $this->c['ctrl_maxmsgline']) { - $abbcount = count($messagelines) - $this->c['ctrl_maxmsgline'] + 1; - array_splice($messagelines, 0, count($messagelines) - $this->c['ctrl_maxmsgline'] + 1); + if (count($messagelines) > $this->c['CTRL_MAXMSGLINE']) { + $abbcount = count($messagelines) - $this->c['CTRL_MAXMSGLINE'] + 1; + array_splice($messagelines, 0, count($messagelines) - $this->c['CTRL_MAXMSGLINE'] + 1); } # バイト数判定 for ($i = count($messagelines)-1; $i > 0; $i--) { $testbuffer .= $messagelines[$i]; - if (strlen($testbuffer) > $this->c['ctrl_maxmsgsize']) { + if (strlen($testbuffer) > $this->c['CTRL_MAXMSGSIZE']) { $abbcount += $i + 1; array_splice($messagelines, 0, $i + 1); break; @@ -533,17 +533,17 @@ # 省略リンク if ($abbcount > 0) { - $message['msg'] .= "\rc['cgiurl']}?m=i&im=o&s={$message['postid']}\">[".$abbcount."行省略]"; + $message['MSG'] .= "\rc['CGIURL']}?m=i&im=o&s={$message['POSTID']}\">[".$abbcount."行省略]"; } - $message['msg'] .= "\r" . implode("\r", $messagelines); + $message['MSG'] .= "\r" . implode("\r", $messagelines); } } # 画像BBSの画像を非表示 - $message['msg'] = Func::conv_imgtag($message['msg']); + $message['MSG'] = Func::conv_imgtag($message['MSG']); # メッセージ表示内容定義 - $prtmessage = $this->c['tmpl_msg']; + $prtmessage = $this->c['TMPL_MSG']; while (preg_match('/\{val (\w+)\}/', $prtmessage, $match)) { $prtmessage = str_replace($match[0], @$message[$match[1]], $prtmessage); } @@ -567,8 +567,8 @@ function prtform($dtitle = "", $dmsg = "", $dlink = "", $dfid = "", $dsid = "") { # 管理人認証 - if (($this->c['bbsmode_adminonly'] == 1 or ($this->c['bbsmode_adminonly'] == 2 and !$dfid)) - and crypt(@$this->f['u'], $this->c['adminpost']) != $this->c['adminpost']) { + if (($this->c['BBSMODE_ADMINONLY'] == 1 or ($this->c['BBSMODE_ADMINONLY'] == 2 and !$dfid)) + and crypt(@$this->f['u'], $this->c['ADMINPOST']) != $this->c['ADMINPOST']) { $this->prterror('パスワードが違います。'); } @@ -580,15 +580,15 @@ # HTMLヘッダ部分出力 $this->sethttpheader(); - print $this->prthtmlhead ($this->c['bbstitle']); - print "c['cgiurl']}?m=i\" accesskey=\"1\">戻"; + print $this->prthtmlhead ($this->c['BBSTITLE']); + print "c['CGIURL']}?m=i\" accesskey=\"1\">戻"; print <<<__IMODE__ - + - - + +
@@ -627,7 +627,7 @@ $this->prterror ( 'パラメータがありません。' ); } - $result = $this->searchmessage('postid', @$this->f['s']); + $result = $this->searchmessage('POSTID', @$this->f['s']); if (!$result) { $this->prterror ( '指定されたメッセージが見つかりません。' ); @@ -636,7 +636,7 @@ $message = $this->getmessage($result[0]); if (!$retry) { - $formmsg = $message['msg']; + $formmsg = $message['MSG']; $formmsg = preg_replace ("/> >[^\r]+\r/", "", $formmsg); $formmsg = preg_replace ("/]*>[^<]+<\/a>/i", "", $formmsg); $formmsg = preg_replace ("/]+>([^<]+)<\/a>/i", "$1", $formmsg); @@ -649,7 +649,7 @@ $formmsg = preg_replace ("/]*>[^<]+<\/a>/i", "", $formmsg); } - $this->prtform ( ">".preg_replace("/<[^>]*>/", '', $message['user'])."{$this->c['fsubj']}", "$formmsg\r", '', $message['postid'], @$this->f['s']); + $this->prtform ( ">".preg_replace("/<[^>]*>/", '', $message['USER'])."{$this->c['FSUBJ']}", "$formmsg\r", '', $message['POSTID'], @$this->f['s']); } @@ -668,7 +668,7 @@ $this->prterror ( 'パラメータがありません。' ); } - $result = $this->searchmessage('postid', @$this->f['s']); + $result = $this->searchmessage('POSTID', @$this->f['s']); if (!$result) { $this->prterror ( '指定されたメッセージが見つかりません。' ); @@ -677,8 +677,8 @@ $message = $this->getmessage($result[0]); $this->sethttpheader(); - print $this->prthtmlhead ($this->c['bbstitle']); - print ' 
';
+    print $this->prthtmlhead ($this->c['BBSTITLE']);
+    print ' 
';
 
     print $this->prtmessage($message, 0, 0, FALSE);
 
@@ -708,8 +708,8 @@
     }
 
     $this->sethttpheader();
-    print $this->prthtmlhead ($this->c['bbstitle']);
-    print ' 
';
+    print $this->prthtmlhead ($this->c['BBSTITLE']);
+    print ' 
';
 
     $result = $this->msgsearchlist($mode);
 
@@ -731,7 +731,7 @@
       $msgrange = 0;
       for ($i = 0; $i < count($result); $i++) {
         $testbuffer .= $this->prtmessage($result[$i], $mode);
-        if (strlen($testbuffer) > $this->c['ctrl_maxpagesize'] - 1000) {
+        if (strlen($testbuffer) > $this->c['CTRL_MAXPAGESIZE'] - 1000) {
           $eindex = $bindex + $i;
           $abbreviated = TRUE;
           break;
@@ -768,8 +768,8 @@
   function prthelp() {
 
     $this->sethttpheader();
-    print $this->prthtmlhead ($this->c['bbstitle']);
-    print ' 
'; + print $this->prthtmlhead ($this->c['BBSTITLE']); + print '
'; print 'アクセスキー一覧

[1] 戻る
[2] 画面上へ
[5] 次ページ
[7] リロード
[8] 画面下へ
[9] 投稿
'; print $this->prthtmlfoot (); diff --dos -uNr kuzuhaphp.orig/sub/bbslog.php kuzuhaphp/sub/bbslog.php --- kuzuhaphp.orig/sub/bbslog.php Sat Jun 21 10:16:54 2003 +++ kuzuhaphp/sub/bbslog.php Fri Apr 01 15:20:20 2005 @@ -207,7 +207,11 @@ } $this->t->addVar('dateform', 'OLDLOGSAVESW', $this->c['OLDLOGSAVESW']); - if (!$this->conf['oldlogfmt'] or !$this->conf['oldlogbtn']) { + if ($this->c['BBSMODE_IMAGE'] == 1) { + if ($this->c['SHOWIMG']) $this->t->addVar('sicheck', 'CHK_SI', ' checked="checked"'); + $this->t->setAttribute('sicheck', 'visibility', 'visible'); + } + if (!$this->c['OLDLOGFMT'] or !$this->c['OLDLOGBTN']) { $this->t->setAttribute("check_bt", "visibility", "hidden"); } if ($this->c['GZIPU']) $this->t->addVar('loglist', 'CHK_G', ' checked="checked"'); @@ -420,8 +424,7 @@ if ($this->c['OLDLOGFMT']) { if (!@$conditions['showall']) { $result = 0; - while (!feof ($fh)) { - $logline = Func::fgetline(&$fh); + while (($logline = Func::fgetline($fh)) !== FALSE) { $message = $this->getmessage($logline); $result = $this->msgsearch($message, $conditions); # 検索ヒット @@ -432,16 +435,18 @@ $needle = "\Q{$conditions['q']}\E"; $quoteq = preg_quote($conditions['q'], "/"); if ($conditions['ci']) { - $prtmessage = preg_replace("/($quoteq)/i", "$1", $prtmessage); - while (preg_match("/(<[^<>]*)$quoteq<\/span>/i", $prtmessage)) { - $prtmessage = preg_replace("/(<[^<>]*)$quoteq<\/span>/i", "$1", $prtmessage, 1); - } + #$prtmessage = preg_replace("/($quoteq)/i", "$1", $prtmessage); + #while (preg_match("/(<[^<>]*)$quoteq<\/span>/i", $prtmessage)) { + # $prtmessage = preg_replace("/(<[^<>]*)$quoteq<\/span>/i", "$1", $prtmessage, 1); + #} + $prtmessage = preg_replace("/((?:\G|>)[^<]*?)($quoteq)/i", "$1$2", $prtmessage); } else { - $prtmessage = str_replace($conditions['q'], "{$conditions['q']}", $prtmessage); - while (preg_match("/(<[^<>]*)$quoteq<\/span>/", $prtmessage)) { - $prtmessage = preg_replace("/(<[^<>]*)$quoteq<\/span>/", "$1", $prtmessage, 1); - } + #$prtmessage = str_replace($conditions['q'], "{$conditions['q']}", $prtmessage); + #while (preg_match("/(<[^<>]*)$quoteq<\/span>/", $prtmessage)) { + # $prtmessage = preg_replace("/(<[^<>]*)$quoteq<\/span>/", "$1", $prtmessage, 1); + #} + $prtmessage = preg_replace("/((?:\G|>)[^<]*?)($quoteq)/", "$1$2", $prtmessage); } } print $prtmessage; @@ -455,8 +460,7 @@ } # 全件表示 else { - while (!feof ($fh)) { - $logline = Func::fgetline(&$fh); + while (($logline = Func::fgetline($fh)) !== FALSE) { $messagestr = $this->prtmessage($this->getmessage($logline), $msgmode, $filename); print $messagestr; } @@ -469,8 +473,7 @@ $buffer = ""; $flgbuffer = FALSE; $result = 0; - while (!feof ($fh)) { - $htmlline = Func::fgetline(&$fh); + while (($htmlline = Func::fgetline($fh)) !== FALSE) { # メッセージの開始 if (!$flgbuffer and preg_match("/
]*id=\"m\d+\"[^>]*>/", $htmlline)) { $buffer = $htmlline; @@ -487,16 +490,18 @@ $needle = "\Q{$conditions['q']}\E"; $quoteq = preg_quote($conditions['q'], "/"); if ($conditions['ci']) { - $buffer = preg_replace("/($quoteq)/i", "$1", $buffer); - while (preg_match("/(<[^<>]*)$quoteq<\/span>/i", $buffer)) { - $buffer = preg_replace("/(<[^<>]*)$quoteq<\/span>/i", "$1", $buffer, 1); - } + #$buffer = preg_replace("/($quoteq)/i", "$1", $buffer); + #while (preg_match("/(<[^<>]*)$quoteq<\/span>/i", $buffer)) { + # $buffer = preg_replace("/(<[^<>]*)$quoteq<\/span>/i", "$1", $buffer, 1); + #} + $buffer = preg_replace("/((?:\G|>)[^<]*?)($quoteq)/i", "$1$2", $buffer); } else { - $buffer = str_replace($conditions['q'], "{$conditions['q']}", $buffer); - while (preg_match("/(<[^<>]*)$quoteq<\/span>/", $buffer)) { - $buffer = preg_replace("/(<[^<>]*)$quoteq<\/span>/", "$1", $buffer, 1); - } + #$buffer = str_replace($conditions['q'], "{$conditions['q']}", $buffer); + #while (preg_match("/(<[^<>]*)$quoteq<\/span>/", $buffer)) { + # $buffer = preg_replace("/(<[^<>]*)$quoteq<\/span>/", "$1", $buffer, 1); + #} + $buffer = preg_replace("/((?:\G|>)[^<]*?)($quoteq)/", "$1$2", $buffer); } } print $buffer; @@ -519,8 +524,7 @@ } } else { - while (!feof ($fh)) { - $htmlline = Func::fgetline(&$fh); + while (($htmlline = Func::fgetline($fh)) !== FALSE) { print $htmlline; } } @@ -534,9 +538,10 @@ #$resultmsg = "{$filename}: {$timerangestr} "; if (@$conditions['q'] != '') { $value = $conditions['q']; - $value_euc = JcodeConvert($value, 2, 1); - $value_euc = htmlentities($value_euc, ENT_QUOTES, 'EUC-JP'); - $value = JcodeConvert($value_euc, 1, 2); + #$value_euc = JcodeConvert($value, 2, 1); + #$value_euc = htmlentities($value_euc, ENT_QUOTES, 'EUC-JP'); + #$value = JcodeConvert($value_euc, 1, 2); + $value = htmlspecialchars($value, ENT_QUOTES); $resultmsg .= '「' . $value . '」は'; } if ($resultcount > 0) { @@ -545,10 +550,10 @@ else { $resultmsg .= '見つかりませんでした。'; } + #print $resultmsg; + $this->t->addVar('oldlog_lower', 'RESULTMSG', $resultmsg); + $this->t->displayParsedTemplate('oldlog_lower'); } - print $resultmsg; - $this->t->addVar('oldlog_lower', 'RESULTMSG', $resultmsg); - $this->t->displayParsedTemplate('oldlog_lower'); } } @@ -570,26 +575,26 @@ function msgsearchhtml ($buffer, $conditions) { $message = array(); - $message['user'] = ''; - $message['title'] = ''; - $message['msg'] = ''; - $message['ndatestr'] = ''; + $message['USER'] = ''; + $message['TITLE'] = ''; + $message['MSG'] = ''; + $message['NDATESTR'] = ''; if (preg_match("/([^<]+)<\/span>/", $buffer, $matches)) { - $message['user'] = $matches[1]; + $message['USER'] = $matches[1]; } if (preg_match("/([^<]+)<\/span>/", $buffer, $matches)) { - $message['title'] = $matches[1]; + $message['TITLE'] = $matches[1]; } if (preg_match("/
[\r\n\s]*
(.+?)<\/pre>/ms", $buffer, $matches)) {
-      $message['msg'] = $matches[1];
+      $message['MSG'] = $matches[1];
     }
     if (preg_match("/[^<]*投稿日:(\d+)\/(\d+)\/(\d+)[^\d]+(\d+)時(\d+)分(\d+)秒/", $buffer, $matches)) {
       if (@$conditions['savesw']) {
-        $message['ndatestr'] = $matches[3] . $matches[4];
+        $message['NDATESTR'] = $matches[3] . $matches[4];
       }
       else {
-        $message['ndatestr'] = $matches[4] . $matches[5];
+        $message['NDATESTR'] = $matches[4] . $matches[5];
       }
     }
 
@@ -612,19 +617,19 @@
     if (@$conditions['savesw']) {
       $starttime = $conditions['sd'].$conditions['sh'];
       $endtime = $conditions['ed'].$conditions['eh'];
-      if (!@$message['ndatestr']) {
-        $message['ndatestr'] = date("dH", $message['ndate']);
+      if (!@$message['NDATESTR']) {
+        $message['NDATESTR'] = date("dH", $message['NDATE']);
       }
     }
     # 日毎
     else {
       $starttime = $conditions['sh'].$conditions['si'];
       $endtime = $conditions['eh'].$conditions['ei'];
-      if (!@$message['ndatestr']) {
-        $message['ndatestr'] = date("Hi", $message['ndate']);
+      if (!@$message['NDATESTR']) {
+        $message['NDATESTR'] = date("Hi", $message['NDATE']);
       }
     }
-    if ($message['ndatestr'] < $starttime or $message['ndatestr'] > $endtime) {
+    if ($message['NDATESTR'] < $starttime or $message['NDATESTR'] > $endtime) {
       return 2;
     }
 
@@ -635,13 +640,13 @@
 
       $haystack = '';
       if ($conditions['t'] == 'u') {
-        $haystack = $message['user'];
+        $haystack = $message['USER'];
       }
       else if ($conditions['t'] == 't') {
-        $haystack = $message['title'];
+        $haystack = $message['TITLE'];
       }
       else {
-        $haystack = "{$message['user']}<>{$message['title']}<>{$message['msg']}";
+        $haystack = "{$message['USER']}<>{$message['TITLE']}<>{$message['MSG']}";
       }
 
       # OR検索
@@ -717,8 +722,7 @@
     $ttitle = array();
     $ttime = array();
     $tindex = 0;
-    while (!feof ($fh)) {
-      $logline = Func::fgetline(&$fh);
+    while (($logline = Func::fgetline($fh)) !== FALSE) {
       $message = $this->getmessage($logline);
       if (!$message['THREAD'] or $message['THREAD'] == $message['POSTID'] or !@$ttitle[$message['THREAD']]) {
         $tid[$tindex] = $message['POSTID'];
diff --dos -uNr kuzuhaphp.orig/sub/bbstree.php kuzuhaphp/sub/bbstree.php
--- kuzuhaphp.orig/sub/bbstree.php	Sat Jun 21 10:16:54 2003
+++ kuzuhaphp/sub/bbstree.php	Fri Apr 01 15:20:20 2005
@@ -222,7 +222,7 @@
       if ($isreadnew) {
         $hit = FALSE;
         for ($i = 0; $i < count($thread); $i++) {
-          if ($thread[$i]['postid'] > $this->f['p']) {
+          if ($thread[$i]['POSTID'] > $this->f['p']) {
             $hit = TRUE;
             break;
           }
@@ -343,6 +343,7 @@
     $treeprint = '';
 
     # 親メッセージの出力
+    reset($treemsgs);
     while (list($pos, $treemsg) = each($treemsgs)) {
       if ($treemsg['POSTID'] == $parentid) {
 
@@ -380,6 +381,7 @@
 
     # 子のIDを列挙
     $childids = array();
+    reset($treemsgs);
     while ($treemsg = each($treemsgs)) {
       if ($treemsg[1]['REFID'] == $parentid) {
         $childids[] = $treemsg[1]['POSTID'];
diff --dos -uNr kuzuhaphp.orig/sub/template.html kuzuhaphp/sub/template.html
--- kuzuhaphp.orig/sub/template.html	Sat Jun 21 10:16:54 2003
+++ kuzuhaphp/sub/template.html	Fri Apr 01 15:20:20 2005
@@ -91,7 +91,8 @@
   
{MSG}
-{ENVLIST}
+ +
@@ -99,7 +100,7 @@ - +
{ENVADDR}{ENVBR}{ENVUA}
@@ -115,7 +116,7 @@ 広報室 連絡先 ツリー表示 - iモード + iモード @@ -135,7 +136,6 @@ - @@ -148,7 +148,6 @@ - @@ -160,7 +159,6 @@ - @@ -183,7 +181,7 @@ - + @@ -271,12 +269,12 @@ 表示件数  URL自動リンク  - 自動改行  + フォームOFF  リンク行OFF  - 画像ON  + 画像ON  @@ -386,7 +384,7 @@ - + @@ -492,7 +490,7 @@ 投稿時にCookieに投稿者名とメールアドレスを記録する
リンク行OFF (投稿フォーム下のリンク一覧行を表示しない)
- 画像ON (画像BBSモードで投稿された画像を表示する)
+ 画像ON (画像BBSモードで投稿された画像を表示する)
    diff --dos -uNr kuzuhaphp.orig/sub/tmpladmin.html kuzuhaphp/sub/tmpladmin.html --- kuzuhaphp.orig/sub/tmpladmin.html Sat Jun 21 10:16:54 2003 +++ kuzuhaphp/sub/tmpladmin.html Fri Apr 01 15:20:20 2005 @@ -131,7 +131,7 @@ -{$this->c['BBSTITLE']} パスワード設定画面 +{BBSTITLE} パスワード設定画面
    diff --dos -uNr kuzuhaphp.orig/sub/tmpllog.html kuzuhaphp/sub/tmpllog.html --- kuzuhaphp.orig/sub/tmpllog.html Sat Jun 21 10:16:54 2003 +++ kuzuhaphp/sub/tmpllog.html Fri Apr 01 15:20:20 2005 @@ -284,9 +284,11 @@ 大文字小文字同一視
    - 画像ON
    + + 画像ON
    +
    - 引用機能使用
    + 引用機能使用
    gzip圧縮転送
    diff --dos -uNr kuzuhaphp.orig/sub/tmpltree.html kuzuhaphp/sub/tmpltree.html --- kuzuhaphp.orig/sub/tmpltree.html Sat Jun 21 10:16:54 2003 +++ kuzuhaphp/sub/tmpltree.html Fri Apr 01 15:20:20 2005 @@ -35,6 +35,7 @@ + @@ -47,6 +48,7 @@ + @@ -58,6 +60,7 @@ + @@ -80,7 +83,7 @@ - +