Issue 2890 fixed. Markup bug.

git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@12651 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ChanMyeong 2013-01-31 09:55:15 +00:00
parent 228c8d7f71
commit ff503a234b
3 changed files with 7 additions and 7 deletions

View file

@ -164,8 +164,8 @@
<input class="x_btn x_btn-primary" type="submit" value="{$lang->cmd_save}" onclick="doSubmitConfig()"/>
</span>
</div>
</div>
<iframe name="hiddenIframe" src="about:blank" width="1000px" height="1000px" frameborder="0" style="position:absolute;top:-9999px;left:-9999px"></iframe>
</section>
<iframe name="hiddenIframe" src="about:blank" hidden></iframe>
<!--@if($use_colorpicker)-->
<!--%load_js_plugin("ui.colorpicker")-->
<!--@end-->

View file

@ -403,11 +403,11 @@ class memberAdminView extends member
$formTag->title = ($formInfo->isDefaultForm) ? $lang->{$formInfo->name} : $formInfo->title;
if($isAdmin)
{
if($formInfo->mustRequired) $formTag->title = '<em>*</em> '.$formTag->title;
if($formInfo->mustRequired) $formTag->title = '<em style="color:red">*</em> '.$formTag->title;
}
else
{
if ($formInfo->required && $formInfo->name != 'password') $formTag->title = '<em>*</em> '.$formTag->title;
if ($formInfo->required && $formInfo->name != 'password') $formTag->title = '<em style="color:red">*</em> '.$formTag->title;
}
$formTag->name = $formInfo->name;

View file

@ -21,20 +21,20 @@
</div>
</div>
<div class="control-group">
<label for="{$identifierForm->name}" class="control-label"><em>*</em> {$identifierForm->title}</label>
<label for="{$identifierForm->name}" class="control-label"><em style="color:red">*</em> {$identifierForm->title}</label>
<div class="controls">
<input type="text"|cond="$identifierForm->name!='email_address'" type="email"|cond="$identifierForm->name=='email_address'" name="{$identifierForm->name}" id="{$identifierForm->name}" value="{$identifierForm->value}" required />
</div>
</div>
<div class="control-group">
<label for="password" class="control-label"><em>*</em> {$lang->password}</label>
<label for="password" class="control-label"><em style="color:red">*</em> {$lang->password}</label>
<div class="controls">
<input type="password" name="password" id="password" value="" required />
<p class="help-inline">{$lang->about_password}</p>
</div>
</div>
<div class="control-group">
<label for="password2" class="control-label"><em>*</em> {$lang->password3}</label>
<label for="password2" class="control-label"><em style="color:red">*</em> {$lang->password3}</label>
<div class="controls">
<input type="password" name="password2" id="password2" value="" required />
</div>