Merge pull request #1044 from ArthurHoaro/hotfix/plugins-parameter-button

Fix an issue preventing the Save button to appear for plugin parameters
This commit is contained in:
ArthurHoaro 2018-01-01 15:46:04 +01:00 committed by GitHub
commit fcbc67edf0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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