第3条,修改文章分页标识。按你提供的代码修改arc.archives.class.php后,无法生成文档html,提示DedeTag Engine Create File False
天涯的有错误,应该这样改

修改文件:/include/arc.archives.class.php
行数:356行
修改代码如下:
//循环生成HTML文件
else
{
for($i=1;$i<=$this->TotalPage;$i++)
{
if($i>1)
{
$truefilename = $this->GetTruePath().$fileFirst."_".$i.".".$this->ShortName;
//为分页标题加上序号。2009.2.13
$this->Fields['title'] = $this->Fields['title'].'('.$i.')';
}
else
{
$truefilename = $this->GetTruePath().$filename;
}
$this->ParseDMFields($i,1);
$this->dtp->SaveTo($truefilename);
}
}
[ 此帖被zjjdtc在2009-03-12 17:37重新编辑 ]