diff options
author | ArthurHoaro <arthur@hoa.ro> | 2017-01-03 11:42:21 +0100 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2017-01-05 16:16:23 +0100 |
commit | a0df06517bada0f811b464017ce385290e02c2bf (patch) | |
tree | 6bc3e99a9e9b93eb3e0f531f67a607dec748f407 /tpl/default/configure.html | |
parent | adc4aee80f7cd3242f65f0b316af2b560a64712c (diff) | |
download | Shaarli-a0df06517bada0f811b464017ce385290e02c2bf.tar.gz Shaarli-a0df06517bada0f811b464017ce385290e02c2bf.tar.zst Shaarli-a0df06517bada0f811b464017ce385290e02c2bf.zip |
Minor improvements regarding #705 (coding style, unit tests, etc.)
Diffstat (limited to 'tpl/default/configure.html')
-rw-r--r-- | tpl/default/configure.html | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/tpl/default/configure.html b/tpl/default/configure.html index 94f6df69..e71133b4 100644 --- a/tpl/default/configure.html +++ b/tpl/default/configure.html | |||
@@ -25,14 +25,15 @@ | |||
25 | <td> | 25 | <td> |
26 | <select name="theme" id="theme"> | 26 | <select name="theme" id="theme"> |
27 | {loop="$theme_available"} | 27 | {loop="$theme_available"} |
28 | {if="$value===$theme"} | 28 | <option value="{$value}" |
29 | <option selected value="{$value}">{$value|ucfirst}</option> | 29 | {if="$value===$theme"} |
30 | {else} | 30 | selected="selected" |
31 | <option value="{$value}">{$value|ucfirst}</option> | 31 | {/if} |
32 | {/if} | 32 | > |
33 | {$value|ucfirst} | ||
34 | </option> | ||
33 | {/loop} | 35 | {/loop} |
34 | </select> | 36 | </select> |
35 | <label for="theme">(default value is: Default)</label> | ||
36 | </td> | 37 | </td> |
37 | </tr> | 38 | </tr> |
38 | 39 | ||