Merge pull request #658 from ArthurHoaro/hotfix/plugin-desc-bug
Bugfix: display plugin parameter description only if it exists
This commit is contained in:
commit
bb70e69059
1 changed files with 3 additions and 1 deletions
|
@ -105,7 +105,9 @@ <h2>{function="str_replace('_', ' ', $key)"}</h2>
|
||||||
<div class="float_label">
|
<div class="float_label">
|
||||||
<label for="{$key}">
|
<label for="{$key}">
|
||||||
<code>{$key}</code><br>
|
<code>{$key}</code><br>
|
||||||
|
{if="isset($value.desc)"}
|
||||||
{$value.desc}
|
{$value.desc}
|
||||||
|
{/if}
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="float_input">
|
<div class="float_input">
|
||||||
|
|
Loading…
Reference in a new issue