Ticket #74 (closed defect: fixed)

Opened 2 years ago

Last modified 2 years ago

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

comment:1 Changed 2 years ago by webmaster

  • Status changed from new to closed
  • Resolution set to fixed

Fixed in r2284.

Note: See TracTickets for help on using tickets.