diff options
author | ArthurHoaro <arthur@hoa.ro> | 2016-10-14 12:48:01 +0200 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2016-10-14 12:48:01 +0200 |
commit | e3de09b4c836547f094e528b61625e2780f40cc1 (patch) | |
tree | 36885cd25b43dca6933edfc2e6a00d7896f3a34a /tpl/pluginsadmin.html | |
parent | f63632a6fb84594b8aeacb387a5cd17b4a841d2c (diff) | |
download | Shaarli-e3de09b4c836547f094e528b61625e2780f40cc1.tar.gz Shaarli-e3de09b4c836547f094e528b61625e2780f40cc1.tar.zst Shaarli-e3de09b4c836547f094e528b61625e2780f40cc1.zip |
Bugfix: display plugin parameter description only if it exists
Diffstat (limited to 'tpl/pluginsadmin.html')
-rw-r--r-- | tpl/pluginsadmin.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tpl/pluginsadmin.html b/tpl/pluginsadmin.html index 966360ea..672f4993 100644 --- a/tpl/pluginsadmin.html +++ b/tpl/pluginsadmin.html | |||
@@ -105,7 +105,9 @@ | |||
105 | <div class="float_label"> | 105 | <div class="float_label"> |
106 | <label for="{$key}"> | 106 | <label for="{$key}"> |
107 | <code>{$key}</code><br> | 107 | <code>{$key}</code><br> |
108 | {$value.desc} | 108 | {if="isset($value.desc)"} |
109 | {$value.desc} | ||
110 | {/if} | ||
109 | </label> | 111 | </label> |
110 | </div> | 112 | </div> |
111 | <div class="float_input"> | 113 | <div class="float_input"> |