把“日期:2006-07-01”改成“日期:2006-07-01 21:47:07”
打开class/cls_logaction.asp
找到
Temp1=Replace(Temp1,"<$log_PostTime$>",DateToStr(log_View("log_PostTime"),"Y-m-d"))
改为
Temp1=Replace(Temp1,"<$log_PostTime$>",log_View("log_PostTime"))
找到
Temp2=Replace(Temp2,"<$log_PostTime$>",DateToStr(log_View("log_PostTime"),"Y-m-d"))
改为
Temp2=Replace(Temp2,"<$log_PostTime$>",log_View("log_PostTime"))
打开class/cls_article.asp
找到
<h2 class="ContentAuthor">作者:<%=log_ViewArr(5,0)%> 日期:<%=DateToStr(log_ViewArr(9,0),"Y-m-d")%></h2>
改为
<h2 class="ContentAuthor">作者:<%=log_ViewArr(5,0)%> 日期:<%=log_ViewArr(9,0)%></h2>