Change all instances of SafeString::of_safe_html() to html::mark_safe() in views.

This commit is contained in:
Andy Staudacher
2009-08-30 07:00:56 -07:00
parent 52b542b253
commit effccfd41d
13 changed files with 18 additions and 18 deletions

View File

@@ -10,7 +10,7 @@
</p>
<p>
<?= t("We received a request to reset your password for <a href=\"%site_url\">%site_url</a>. If you made this request, you can confirm it by <a href=\"%confirm_url\">clicking this link</a>. If you didn't request this password reset, it's ok to ignore this mail.",
array("site_url" => SafeString::of_safe_html(url::base(false, "http")),
array("site_url" => html::mark_safe(url::base(false, "http")),
"confirm_url" => $confirm_url)) ?>
</p>
</body>