本帖最后由 xuenping 于 2010-4-21 22:46 编辑
#### 广告功能修改
1、大调整:对系统的广告功能进行了调整,主要体现在
A、文本广告 返回一维数组 可以实现文本广告多条同时显示
################ 广告修改结束
#### 系统内核修改
1、修改了 common.func.php 中的 pr 函数
2、在common.func.php 中的 cutstr($string, $length, $havedot=0) 函数前增加了两个函数
substring($string,$count,$dot=0) 切取
subcolorstring($string,$count,$dot=0) 切取并随机分配颜色
colorstring($string) 只改变颜色
相应地 增加了
$template = preg_replace("/[\n\r\t]*\#cut\((.+?)\)\#[\n\r\t]*/ies", "striptagquotes('<?php echo substring(\\1); ?>')", $template);
$template = preg_replace("/[\n\r\t]*\#color\((.+?)\)\#[\n\r\t]*/ies", "striptagquotes('<?php echo subcolorstring(\\1); ?>')", $template);
代码。
3、在admin.js 中添加了 函数
function gatherpage(o,id){
var k=document.getElementById(id);
if(o.checked==true)
document.getElementById(id).style.display = "";
else
document.getElementById(id).style.display = "none";
}
相应地在 spacenews.htm 中 “获取远程信息 ”功能做了新设置
实现了分页采集功能!
################ 系统内核修改结束
#### 前台显示功能修改
1、修改了 batch.panel.php 中的显示代码 [用户状态切换]
################ 前台显示功能修改结束
#### 图片裁切管理功能修改
1、batch.epitome.php 中的判断数据合法性
注释了 原来的报错误,新赋值给$_GET['imageauthcode']
注释掉尺寸小不能切图的限制 并重新设置裁切大小
2、添加了设置尺寸的表单
################ 图片裁切管理功能修改结束 |