Skip to content
Snippets Groups Projects
Unverified Commit 0a2a994d authored by yashodha's avatar yashodha Committed by GitHub
Browse files

Merge pull request #25452 from eileenmcnaughton/notice

Report tpl enotices fix
parents af9bd60e 7b332fca
Branches
Tags
No related merge requests found
......@@ -13,10 +13,12 @@
{assign var="optionCount" value=0}
<tr class="crm-report crm-report-criteria-field">
{foreach from=$otherOptions item=optionField key=optionName}
{assign var="optionCount" value=`$optionCount+1`}
<td>{if $form.$optionName.label}{$form.$optionName.label}&nbsp;{/if}{$form.$optionName.html}</td>
{if $optionCount is div by 2}
</tr><tr class="crm-report crm-report-criteria-field">
{if array_key_exists($optionName, $form)}
{assign var="optionCount" value=`$optionCount+1`}
<td>{if $form.$optionName.label}{$form.$optionName.label}&nbsp;{/if}{$form.$optionName.html}</td>
{if $optionCount is div by 2}
</tr><tr class="crm-report crm-report-criteria-field">
{/if}
{/if}
{/foreach}
{if $optionCount is not div by 2}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment