Skip to content
Snippets Groups Projects
Commit 09cc9432 authored by yogeshwar's avatar yogeshwar
Browse files

E-All Settings Profiles

parent b17dd1cd
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@
************************************************************************************}
{* modules/Settings/Profiles/views/EditAjax.php *}
{if $SHOW_EXISTING_PROFILES}
{if isset($SHOW_EXISTING_PROFILES) && $SHOW_EXISTING_PROFILES}
{foreach key=index item=jsModel from=$SCRIPTS}
<script type="{$jsModel->getType()}" src="{$jsModel->getSrc()}"></script>
{/foreach}
......
......@@ -56,7 +56,7 @@
</th>
{/if}
{/if}
{if $MODULE eq 'Tags' or $MODULE eq 'CronTasks' or $LISTVIEW_ACTIONS_ENABLED eq true}
{if $MODULE eq 'Tags' or $MODULE eq 'CronTasks' or isset($LISTVIEW_ACTIONS_ENABLED) && $LISTVIEW_ACTIONS_ENABLED eq true}
<th>
{vtranslate('LBL_ACTIONS', $QUALIFIED_MODULE)}
</th>
......@@ -80,7 +80,7 @@
{foreach item=LISTVIEW_HEADER from=$LISTVIEW_HEADERS}
{assign var=LISTVIEW_HEADERNAME value=$LISTVIEW_HEADER->get('name')}
{assign var=LAST_COLUMN value=$LISTVIEW_HEADER@last}
<td class="listViewEntryValue textOverflowEllipsis {$WIDTHTYPE}" width="{$WIDTH}%" nowrap>
<td class="listViewEntryValue textOverflowEllipsis {$WIDTHTYPE}" width="{(isset($WIDTH)) ? $WIDTH : ''}%" nowrap>
{$LISTVIEW_ENTRY->getDisplayValue($LISTVIEW_HEADERNAME)}
{if $LAST_COLUMN && $LISTVIEW_ENTRY->getRecordLinks()}
</td>
......
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