Fixed erroneous use of msg(), these are HTML messages not plain text.
authorTim Starling <tstarling@users.mediawiki.org>
Wed, 21 Jun 2006 05:14:01 +0000 (05:14 +0000)
committerTim Starling <tstarling@users.mediawiki.org>
Wed, 21 Jun 2006 05:14:01 +0000 (05:14 +0000)
includes/templates/Userlogin.php

index 742dc71..58d9920 100644 (file)
@@ -188,12 +188,12 @@ class UsercreateTemplate extends QuickTemplate {
                        echo '<div id="login-sectiontip">';
                        if ( $this->data['useemail'] ) {
                                echo '<div>';
-                               $this->msg('prefs-help-email');
+                               $this->msgHtml('prefs-help-email');
                                echo '</div>';
                        }
                        if ( $this->data['userealname'] ) {
                                echo '<div>';
-                               $this->msg('prefs-help-realname');
+                               $this->msgHtml('prefs-help-realname');
                                echo '</div>';
                        }
                        echo '</div>';