관리자>강좌>메뉴설정에서 모든 게시판을 제거했는데 운영자에게 문의하세요 가 출력된다

-> 모든 게시판 선택하지 않아도 등록될 수 있도록 변경 요청
This commit is contained in:
lch 2021-06-28 02:09:18 +00:00
parent cce147ff91
commit a53e84be11
1 changed files with 5 additions and 1 deletions

View File

@ -1250,7 +1250,10 @@
<update id="cm.cmmenu.up" parameterClass="hashtable">
update cmmenu set <include refid="sql.up"></include>,isplan=#isplan#,iscontent=#iscontent#,isev=#isev#,isrs=#isrs#,isgrade=#isgrade#
where cmno=#cmno#;
<isEmpty property="bmnos">
delete from cmmenubm where cmno=#cmno#;
</isEmpty>
<isNotEmpty property="bmnos">
delete from cmmenubm where cmno=#cmno# and bmno not in ($bmnos$);
insert into cmmenubm (cmno,bmno,<include refid="sql.inc"></include>)
@ -1258,6 +1261,7 @@
from boardmaster a
left outer join cmmenubm b on b.cmno=#cmno# and b.bmno=a.bmno
where a.bmno in ($bmnos$) and b.bmno is null;
</isNotEmpty>
</update>
<select id="cm.cminfile" parameterClass="int" resultClass="data">