From: Tim Starling Date: Wed, 21 Jun 2006 05:14:01 +0000 (+0000) Subject: Fixed erroneous use of msg(), these are HTML messages not plain text. X-Git-Tag: 1.31.0-rc.0~56714 X-Git-Url: http://git.cyclocoop.org/fichier?a=commitdiff_plain;h=a385976ccabdcf7e63f3efe75fe9a3be70d1962a;p=lhc%2Fweb%2Fwiklou.git Fixed erroneous use of msg(), these are HTML messages not plain text. --- diff --git a/includes/templates/Userlogin.php b/includes/templates/Userlogin.php index 742dc71ae7..58d99207b9 100644 --- a/includes/templates/Userlogin.php +++ b/includes/templates/Userlogin.php @@ -188,12 +188,12 @@ class UsercreateTemplate extends QuickTemplate { echo '
'; if ( $this->data['useemail'] ) { echo '
'; - $this->msg('prefs-help-email'); + $this->msgHtml('prefs-help-email'); echo '
'; } if ( $this->data['userealname'] ) { echo '
'; - $this->msg('prefs-help-realname'); + $this->msgHtml('prefs-help-realname'); echo '
'; } echo '
';