首页 > CMS > 织梦DEDE > 正文

dedecms自动把未审核文章的时间设定为当前时间

2024-07-12 08:51:19
字体:
来源:转载
供稿:网友
关键字描述:

自动把未审核文章的时间设定为当前时间


功能:进入编辑文章时候,对于未审核的文章,自动把发布时间框里显示当前系统时间,如果文章已经审核过,则发布时间是不变。

修改dede/templets/article_edit.htm页面

<td width="90"> 发布时间:</td>
<td width="381">


把下面的
<?php
$nowtime = GetDateTimeMk($arcRow["pubdate"]);
echo "<input name=/"pubdate/" value=/"$nowtime/" type=/"text/" id=/"pubdate/" style=/"width:200px/">";
?>


替换成:<?php
if($arcRow["arcrank"]!=-1){
$nowtime = GetDateTimeMk($arcRow["pubdate"]);
echo "<input name=/"pubdate/" value=/"$nowtime/" type=/"text/" id=/"pubdate/" style=/"width:200px/">";
}else{
$nowtime =date('Y-m-d H:i:s');
echo "<input name=/"pubdate/" value=/"$nowtime/" type=/"text/" id=/"pubdate/" style=/"width:200px/">";
};
?>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表