Skip to content
Snippets Groups Projects
Commit 152b5f77 authored by Uma's avatar Uma
Browse files

Fixes #1001 ::Uma::Followed records unmarked on non-english language pack

parent 55127e11
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@
<input type="checkbox" value="{$LISTVIEW_ENTRY->getId()}" class="listViewEntriesCheckBox"/>
</span>
{/if}
{if $LISTVIEW_ENTRY->get('starred') eq 'Yes'}
{if $LISTVIEW_ENTRY->get('starred') eq vtranslate('LBL_YES', $MODULE)}
{assign var=STARRED value=true}
{else}
{assign var=STARRED value=false}
......
......@@ -15,7 +15,7 @@
<input type="checkbox" value="{$LISTVIEW_ENTRY->getId()}" class="listViewEntriesCheckBox"/>
</span>
{/if}
{if $LISTVIEW_ENTRY->get('starred') eq 'Yes'}
{if $LISTVIEW_ENTRY->get('starred') eq vtranslate('LBL_YES', $MODULE)}
{assign var=STARRED value=true}
{else}
{assign var=STARRED value=false}
......
......@@ -15,7 +15,7 @@
<input type="checkbox" value="{$LISTVIEW_ENTRY->getId()}" class="listViewEntriesCheckBox"/>
</span>
{/if}
{if $LISTVIEW_ENTRY->get('starred') eq 'Yes'}
{if $LISTVIEW_ENTRY->get('starred') eq vtranslate('LBL_YES', $MODULE)}
{assign var=STARRED value=true}
{else}
{assign var=STARRED value=false}
......
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