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' => '
-