Skip to content
Snippets Groups Projects
Commit 6fbdc00e authored by Prasad's avatar Prasad
Browse files

Fixes #1922: PHP strict convention corrected in template

parent 70033601
No related branches found
No related tags found
No related merge requests found
......@@ -122,7 +122,10 @@
{/foreach}
{if $PAGING_INFO['recordCount'] eq '0'}
<tr class="emptyRecordsDiv">
{assign var=COLSPAN_WIDTH value={php7_count($LISTVIEW_HEADERS)}+1}
{assign var=COLSPAN_WIDTH value=1}
{if isset($LISTVIEW_HEADERS)}
{assign var=COLSPAN_WIDTH value=php7_count($LISTVIEW_HEADERS)+1}
{/if}
<td colspan="{$COLSPAN_WIDTH}">
<div class="emptyRecordsContent">
{assign var=SINGLE_MODULE value="SINGLE_$MODULE"}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment