Fix an issue preventing the Save button to appear for plugin parameters

is a special variable in RainTPL used in loops
This commit is contained in:
ArthurHoaro 2018-01-01 15:40:51 +01:00
parent d77bdb432a
commit d799554259
1 changed files with 3 additions and 3 deletions

View File

@ -137,9 +137,9 @@
{if="count($enabledPlugins)==0"}
<p class="center">{'No plugin enabled.'|t}</p>
{else}
{$counter=0}
{$nbParameters=0}
{loop="$enabledPlugins"}
{$counter=$counter+count($value.parameters)}
{$nbParameters=$nbParameters+count($value.parameters)}
{if="count($value.parameters) > 0"}
<div class="plugin_parameters">
<h3 class="window-subtitle">{function="str_replace('_', ' ', $key)"}</h3>
@ -161,7 +161,7 @@
</div>
{/if}
{/loop}
{if="$counter===0"}
{if="$nbParameters===0"}
<p class="center">{'No parameter available.'|t}</p>
{else}
<div class="center">