Skip to content

Commit a7d3160

Browse files
committed
bugfix
1 parent 2eea00a commit a7d3160

File tree

1 file changed

+2
-2
lines changed
  • publiccms-parent/publiccms/src/main/resources/templates/admin/cmsContent

1 file changed

+2
-2
lines changed

publiccms-parent/publiccms/src/main/resources/templates/admin/cmsContent/add.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<li>
2323
<label><input type="checkbox" name="draft" class="form-check-input"/><@t.page 'draft'/></label>
2424
</li>
25-
<#if !category.workflowId?has_content>
25+
<#if !(category.workflowId)?has_content>
2626
<@sys.authorized roleIds=admin.roles url='cmsContent/check'>
2727
<li>
2828
<label>
@@ -118,7 +118,7 @@
118118
<#else>
119119
<input name="sort" type="hidden" value="${(a.sort)!0}"/>
120120
</#if>
121-
<#if a.quoteContentId?has_content && !a.parentId?has_content><san class="statusText orange"><@t.page "content.quote"/></span></#if>
121+
<#if (a.quoteContentId)?has_content && !(a.parentId)?has_content><san class="statusText orange"><@t.page "content.quote"/></span></#if>
122122
</dd>
123123
</dl>
124124
<dl<#if !fieldList?seq_contains('source')> class="copied hide"</#if>>

0 commit comments

Comments
 (0)