mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-27 22:33:10 +09:00
issue 420, fixed can not register module admin when using email address for member identifier
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9608 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
db0d62ed4a
commit
4ac1dca4a4
4 changed files with 24 additions and 3 deletions
|
|
@ -13,11 +13,17 @@
|
|||
<div class="table">
|
||||
<table width="100%" border="1" cellspacing="0">
|
||||
<tr>
|
||||
<th scope="row" rowspan="2">{$lang->admin_id}</th>
|
||||
<th scope="row" rowspan="2">
|
||||
<!--@if($member_config->identifier == 'email_address')-->
|
||||
{$lang->admin_email_address}
|
||||
<!--@else-->
|
||||
{$lang->admin_id}
|
||||
<!--@end-->
|
||||
</th>
|
||||
<td >
|
||||
<select name="_admin_member" multiple="multiple" size="{count($admin_member)?count($admin_member):1}" class="w200">
|
||||
<!--@foreach($admin_member as $key => $val)-->
|
||||
<option value="{$val->user_id}">{$val->nick_name} ({$val->user_id})</option>
|
||||
<option value="{$val->user_id}">{$val->nick_name} (<!--@if($member_config->identifier=='email_address')-->{$val->email_address}<!--@else-->{$val->user_id}<!--@end-->)</option>
|
||||
<!--@end-->
|
||||
</select>
|
||||
</td>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue