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">
|
||||
<label for="{$key}">
|
||||
<code>{$key}</code><br>
|
||||
{$value.desc}
|
||||
{if="isset($value.desc)"}
|
||||
{$value.desc}
|
||||
{/if}
|
||||
</label>
|
||||
</div>
|
||||
<div class="float_input">
|
||||
|
|
Loading…
Reference in a new issue