下载安装了,现在修改bbs部分的代码
tex是不是只有wforum只能用?
doc/kbsIntro.txt中说:
FILE_TEX (0x80) tex 方式发表帖子,仅用于 wForum
inc/ubbcode.php中有一段:
11 if ($is_tex) { //先用一个最最猥琐的办法
12 $tmpfile = BBS_HOME . "/tmp/" . mt_rand();
13 $handle = popen(BBS_HOME . "/bin/itex2MML > $tmpfile", "w");
14 if ($handle) {
15 fwrite($handle, $strContent);
16 pclose($handle);
17 $handle = fopen($tmpfile, "r");
18 if ($handle) {
19 $strContent = fread($handle, filesize($tmpfile));
20 fclose($handle);
21 }
22 @unlink($tmpfile);
23 }
24 } else {
这里的itex2MML是干什么的,如果下载了jsMath,它还需要吗?
【 在 leonz (leonz) 的大作中提到: 】
: 要自己下载jsMath
--
FROM 124.200.34.*