diff options
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 | ||