phpcms投稿后不能修改:让PHPCMS V9前台(会员中心)可以修改已审核的文章
2017-07-22 22:30:28   来源:   浏览: 次

导读:只需要简单的两个步骤1 修改模板文件 phpcms templates default member content_published html找到{if $info[status]==99}

只需要简单的两个步骤
1.修改模板文件 \phpcms\templates\default\member\content_published.html
找到

  1. {if $info[status]==99}<font color="#1D94C7">{L('pass')}</font>{elseif !$info[flag]}{L('verify_content')}{else}<a href="index.php?m=member&c=content&a=edit&catid={$info[catid]}&id={$info[id]}"><font color="red">{L('edit')}</font></a>{/if}

修改为

  1. <a href="index.php?m=member&c=content&a=edit&catid={$info[catid]}&id={$info[id]}"><font color="red">{L('edit')}</font></a> {if $info[status]==99}<font color="#1D94C7">{L('pass')}</font>{elseif !$info[flag]}{L('verify_content')}{/if}


即是把“编辑”链接提出判断语句。$info[status]==99意思是“已审核” 3=已通过,2=退稿,1=待审核,0=草稿
2.修改模块文件 \phpcms\modules\member\content.php
屏蔽掉语句

  1. if($r['status']==99) showmessage(L('has_been_verified'));

经过以上两个步骤phpcms投稿后不能修改的问题就解决了,让PHPCMS V9前台(会员中心)可以再次修改已审核的文章且修改后再次审核!!!!