项目介绍
设计欣赏
archives_add.php 中的:$description = cn_substrR($description,$cfg_auot_description); archives_edit.php 中的: $description = cn_substrR($description,250);
这两个语句是用来定义摘要的,$cfg_auot_description是自动摘要长度的变量,250是长度的最大值
可是为什么一定要给摘要规定一个长度呢?
所以这个方法就是直接将摘要长度去掉,将代码改为:
archives_add.php $description = $description;
archives_edit.php $description = $description;