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:
parent
d77bdb432a
commit
d799554259
1 changed files with 3 additions and 3 deletions
|
@ -137,9 +137,9 @@ <h2 class="window-title">{'Plugin configuration'|t}</h2>
|
|||
{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 @@ <h3 class="window-subtitle">{function="str_replace('_', ' ', $key)"}</h3>
|
|||
</div>
|
||||
{/if}
|
||||
{/loop}
|
||||
{if="$counter===0"}
|
||||
{if="$nbParameters===0"}
|
||||
<p class="center">{'No parameter available.'|t}</p>
|
||||
{else}
|
||||
<div class="center">
|
||||
|
|
Loading…
Reference in a new issue