Remove hard coded colon in h2 after loginerror
authorSiebrand Mazeland <siebrand@users.mediawiki.org>
Sun, 19 Oct 2008 19:17:47 +0000 (19:17 +0000)
committerSiebrand Mazeland <siebrand@users.mediawiki.org>
Sun, 19 Oct 2008 19:17:47 +0000 (19:17 +0000)
includes/templates/Userlogin.php

index 02397ea..5bf1e10 100644 (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>