mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
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:
parent
228c8d7f71
commit
ff503a234b
3 changed files with 7 additions and 7 deletions
|
|
@ -164,8 +164,8 @@
|
||||||
<input class="x_btn x_btn-primary" type="submit" value="{$lang->cmd_save}" onclick="doSubmitConfig()"/>
|
<input class="x_btn x_btn-primary" type="submit" value="{$lang->cmd_save}" onclick="doSubmitConfig()"/>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</section>
|
||||||
<iframe name="hiddenIframe" src="about:blank" width="1000px" height="1000px" frameborder="0" style="position:absolute;top:-9999px;left:-9999px"></iframe>
|
<iframe name="hiddenIframe" src="about:blank" hidden></iframe>
|
||||||
<!--@if($use_colorpicker)-->
|
<!--@if($use_colorpicker)-->
|
||||||
<!--%load_js_plugin("ui.colorpicker")-->
|
<!--%load_js_plugin("ui.colorpicker")-->
|
||||||
<!--@end-->
|
<!--@end-->
|
||||||
|
|
|
||||||
|
|
@ -403,11 +403,11 @@ class memberAdminView extends member
|
||||||
$formTag->title = ($formInfo->isDefaultForm) ? $lang->{$formInfo->name} : $formInfo->title;
|
$formTag->title = ($formInfo->isDefaultForm) ? $lang->{$formInfo->name} : $formInfo->title;
|
||||||
if($isAdmin)
|
if($isAdmin)
|
||||||
{
|
{
|
||||||
if($formInfo->mustRequired) $formTag->title = '<em>*</em> '.$formTag->title;
|
if($formInfo->mustRequired) $formTag->title = '<em style="color:red">*</em> '.$formTag->title;
|
||||||
}
|
}
|
||||||
else
|
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;
|
$formTag->name = $formInfo->name;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,20 +21,20 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="control-group">
|
<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">
|
<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 />
|
<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>
|
</div>
|
||||||
<div class="control-group">
|
<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">
|
<div class="controls">
|
||||||
<input type="password" name="password" id="password" value="" required />
|
<input type="password" name="password" id="password" value="" required />
|
||||||
<p class="help-inline">{$lang->about_password}</p>
|
<p class="help-inline">{$lang->about_password}</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="control-group">
|
<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">
|
<div class="controls">
|
||||||
<input type="password" name="password2" id="password2" value="" required />
|
<input type="password" name="password2" id="password2" value="" required />
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue