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/comment/views/comments.html.php | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
(limited to 'modules/comment/views/comments.html.php')
diff --git a/modules/comment/views/comments.html.php b/modules/comment/views/comments.html.php
index f7251389..7941b7da 100644
--- a/modules/comment/views/comments.html.php
+++ b/modules/comment/views/comments.html.php
@@ -12,16 +12,16 @@
"
class="gAvatar"
- alt="= p::clean($comment->author_name()) ?>"
+ alt="= SafeString::of($comment->author_name()) ?>"
width="40"
height="40" />
= t('on %date %name said',
array("date" => date("Y-M-d H:i:s", $comment->created),
- "name" => p::clean($comment->author_name()))); ?>
+ "name" => SafeString::of($comment->author_name()))); ?>
- = nl2br(p::purify($comment->text)) ?>
+ = nl2br(SafeString::purify($comment->text)) ?>
endforeach ?>
--
cgit v1.2.3