Skip to content
Snippets Groups Projects
Commit 7b332fca authored by Eileen McNaughton's avatar Eileen McNaughton
Browse files

Report tpl enotice fix

parent aa40392b
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