Issue 2106 fix some different codes from PC page to Mobile page on member sign in page of mobile XE.

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10867 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
misol 2012-07-11 14:18:06 +00:00
parent 485d7f043c
commit 91c8acdbb8

View file

@ -35,13 +35,12 @@
<input type="password" name="password" id="password" value=""/> <input type="password" name="password" id="password" value=""/>
</li> </li>
<li> <li>
<label for="password2">{$lang->password2} <em style="color:red">*</em></label> <label for="password2">{$lang->password3} <em style="color:red">*</em></label>
<input type="password" name="password2" id="password2" value=""/> <input type="password" name="password2" id="password2" value=""/>
</li> </li>
<li loop="$formTags=>$formTag"> <li loop="$formTags=>$formTag" cond="$formTag->name != 'signature'">
<label>{$formTag->title}</label> <label>{$formTag->title}</label>
<block cond="$formTag->name != 'signature'">{$formTag->inputTag}</block> {$formTag->inputTag}
<block cond="$formTag->name =='signature'">{$editor}</block>
</li> </li>
<li> <li>
<label>{$lang->allow_mailing}</label> <label>{$lang->allow_mailing}</label>
@ -51,7 +50,7 @@
<li> <li>
<label>{$lang->allow_message}</label> <label>{$lang->allow_message}</label>
<block loop="$lang->allow_message_type=>$key,$val"> <block loop="$lang->allow_message_type=>$key,$val">
<input type="radio" name="allow_message" value="{$key}" checked="checked"|cond="$member_info->allow_message == $key" id="allow_{$key}" /> <label for="allow_{$key}">{$val}</label> <input type="radio" name="allow_message" value="{$key}" checked="checked"|cond="$member_info->allow_message == $key || (!$member_info && $key == 'Y')" id="allow_{$key}" /> <label for="allow_{$key}">{$val}</label>
</block> </block>
</li> </li>
</ul> </ul>