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

自动把未审核文章的时间设定为当前时间   功能:进入编辑文章时候,对于未审核的文章,自动把发布时间框里显示当前系统时间,如果文章已经审核过,则发布时间是不变。   修改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\">";
};
?>