Remove hard coded colon in h2 after loginerror

This commit is contained in:
Siebrand Mazeland 2008-10-19 19:17:47 +00:00
parent fb29ec180e
commit f8f7f33feb

View file

@ -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>