summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-07-09 10:00:16 -0700
committerBharat Mediratta <bharat@menalto.com>2009-07-09 10:00:16 -0700
commitb0429797fc7db5464717deffebdccc9705ca7820 (patch)
tree3e8b320978309d86d4d20a26466efc554bdd9ebf
parenta6ac9b3059749ba8cfeea8ef1712c9b9859b8b9e (diff)
Use p::purify instead of p::clean
-rw-r--r--modules/server_add/views/server_add_tree_dialog.html.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/server_add/views/server_add_tree_dialog.html.php b/modules/server_add/views/server_add_tree_dialog.html.php
index 8b13001f..0d56df7b 100644
--- a/modules/server_add/views/server_add_tree_dialog.html.php
+++ b/modules/server_add/views/server_add_tree_dialog.html.php
@@ -5,17 +5,17 @@
</script>
<div id="gServerAdd">
- <h1 style="display: none;"><?= t("Add Photos to '%title'", array("title" => p::clean($item->title))) ?></h1>
+ <h1 style="display: none;"><?= t("Add Photos to '%title'", array("title" => p::purify($item->title))) ?></h1>
<p id="gDescription"><?= t("Photos will be added to album:") ?></p>
<ul class="gBreadcrumbs">
<? foreach ($item->parents() as $parent): ?>
<li>
- <?= p::clean($parent->title) ?>
+ <?= p::purify($parent->title) ?>
</li>
<? endforeach ?>
<li class="active">
- <?= p::clean($item->title) ?>
+ <?= p::purify($item->title) ?>
</li>
</ul>