Ticket #74 (closed defect: fixed)
Typo error in admin.custom_pages.tpl
| Reported by: | MickeyM | ||
|---|---|---|---|
| Priority: | medium | Milestone: | 7.3 |
| Component: | ExiteCMS Core | Version: | 7.2 |
| Severity: | Fix | Keywords: | |
Description
There is a typo error on line 44 of the template.
Now always the first user_group is shown, because the selected tag is not recognized.
Current line:
<option value='{$user_groups[id].id}{if $user_groups[id].selected} selected{/if}'>{$user_groups[id].name}</option>
Correct line:
<option value='{$user_groups[id].id}'{if $user_groups[id].selected} selected='selected'{/if}>{$user_groups[id].name}</option>
Change History
Note: See
TracTickets for help on using
tickets.

Fixed in r2284.