Remove hard coded colon in h2 after loginerror
This commit is contained in:
parent
fb29ec180e
commit
f8f7f33feb
1 changed files with 2 additions and 2 deletions
|
|
@ -16,7 +16,7 @@ class UserloginTemplate extends QuickTemplate {
|
|||
?>
|
||||
<div class="<?php $this->text('messagetype') ?>box">
|
||||
<?php if ( $this->data['messagetype'] == 'error' ) { ?>
|
||||
<h2><?php $this->msg('loginerror') ?>:</h2>
|
||||
<h2><?php $this->msg('loginerror') ?></h2>
|
||||
<?php } ?>
|
||||
<?php $this->html('message') ?>
|
||||
</div>
|
||||
|
|
@ -113,7 +113,7 @@ class UsercreateTemplate extends QuickTemplate {
|
|||
?>
|
||||
<div class="<?php $this->text('messagetype') ?>box">
|
||||
<?php if ( $this->data['messagetype'] == 'error' ) { ?>
|
||||
<h2><?php $this->msg('loginerror') ?>:</h2>
|
||||
<h2><?php $this->msg('loginerror') ?></h2>
|
||||
<?php } ?>
|
||||
<?php $this->html('message') ?>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue