From c01ac42c4604b3b129e8089e0dc683ebd418b380 Mon Sep 17 00:00:00 2001
From: Andy Staudacher
Date: Sat, 29 Aug 2009 12:48:40 -0700
Subject: Refactor all calls of p::clean() to SafeString::of() and p::purify()
to SafeString::purify().
Removing any p::clean() calls for arguments to t() and t2() since their args are wrapped in a SafeString anyway.
---
modules/gallery/views/simple_uploader.html.php | 6 +++---
1 file changed, 3 insertions(+), 3 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 38ac518c..56e568f6 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): ?>
- - = p::clean($parent->title) ?>
+ - = SafeString::of($parent->title) ?>
endforeach ?>
- - = p::purify($item->title) ?>
+ - = SafeString::purify($item->title) ?>
--
cgit v1.2.3