From b9bd1681a3b1496c0f1bbe5e6254ab4fd0c9fe30 Mon Sep 17 00:00:00 2001
From: Andy Staudacher
Date: Sat, 29 Aug 2009 22:54:20 -0700
Subject: Update all code to use helper method html::clean(), html::purify(),
... instead of SafeString directly.
---
modules/gallery/views/simple_uploader.html.php | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
(limited to 'modules/gallery/views/simple_uploader.html.php')
diff --git a/modules/gallery/views/simple_uploader.html.php b/modules/gallery/views/simple_uploader.html.php
index 1f185780..b136972a 100644
--- a/modules/gallery/views/simple_uploader.html.php
+++ b/modules/gallery/views/simple_uploader.html.php
@@ -6,7 +6,7 @@
@@ -26,9 +26,9 @@
foreach ($item->parents() as $parent): ?>
- - = SafeString::of($parent->title) ?>
+ - = html::clean($parent->title) ?>
endforeach ?>
- - = SafeString::purify($item->title) ?>
+ - = html::purify($item->title) ?>
@@ -82,13 +82,13 @@