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
+1 -1
View File
@@ -18,7 +18,7 @@
<h1> <?= t("That's it!") ?> </h1>
<p>
<?= t("Your <a href=\"%url\">Gallery</a> is up to date.",
array("url" => SafeString::of_safe_html(url::site("albums/1")))) ?>
array("url" => html::mark_safe(url::site("albums/1")))) ?>
</p>
</div>
</div>