Summary:
No language flags displayed as if $langs|@count is replaced by if $ls|@count in template
Detailed Description:
Hi,
I installed a brand new 1.11.1 version of CMSMS coupled with your great MleCMS
and I noticed that nothing was displayed.
After looking inside the code and debuging, I found that the $langs variable was
wel formatted and filled, but the Flags template begin with "if $ls|@count" in
place of "if $langs|@count".
Then, no correct variable is used.
After replacing this :
{if $ls|@count}
{foreach from=$ls item=l name=language}
by this :
{if $langs|@count}
{foreach from=$langs item=l name=language}
Everything went true.
Thanks for your work.
Eric