diff options
author | Andy Staudacher <andy.st@gmail.com> | 2009-08-31 00:42:18 -0700 |
---|---|---|
committer | Andy Staudacher <andy.st@gmail.com> | 2009-08-31 00:42:18 -0700 |
commit | ddb84c84e16766c6b79bd7fea61532257e83ef8b (patch) | |
tree | b66c8a2ce6e8d21da31b6d67adfd3ac5de9b8fe6 /modules/gallery/views/admin_block_welcome.html.php | |
parent | 6d26b0dd6e900250072ca723c388cf3c5d987aeb (diff) |
Rename mark_safe() to mark_clean()
Diffstat (limited to 'modules/gallery/views/admin_block_welcome.html.php')
-rw-r--r-- | modules/gallery/views/admin_block_welcome.html.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/gallery/views/admin_block_welcome.html.php b/modules/gallery/views/admin_block_welcome.html.php index 71ef4368..d8c96187 100644 --- a/modules/gallery/views/admin_block_welcome.html.php +++ b/modules/gallery/views/admin_block_welcome.html.php @@ -5,16 +5,16 @@ <ul> <li> <?= t("General Settings - choose your <a href=\"%graphics_url\">graphics</a> and <a href=\"%language_url\">language</a> settings.", - array("graphics_url" => html::mark_safe(url::site("admin/graphics")), - "language_url" => html::mark_safe(url::site("admin/languages")))) ?> + array("graphics_url" => html::mark_clean(url::site("admin/graphics")), + "language_url" => html::mark_clean(url::site("admin/languages")))) ?> </li> <li> <?= t("Appearance - <a href=\"%theme_url\">choose a theme</a>, or <a href=\"%theme_options_url\">customize the way it looks</a>.", - array("theme_url" => html::mark_safe(url::site("admin/themes")), - "theme_options_url" => html::mark_safe(url::site("admin/theme_options")))) ?> + array("theme_url" => html::mark_clean(url::site("admin/themes")), + "theme_options_url" => html::mark_clean(url::site("admin/theme_options")))) ?> </li> <li> <?= t("Customize - <a href=\"%modules_url\">install modules</a> to add cool features!", - array("modules_url" => html::mark_safe(url::site("admin/modules")))) ?> + array("modules_url" => html::mark_clean(url::site("admin/modules")))) ?> </li> </ul> |