From 7766c2c2e9d618b91322a7a617613961a21ab5b4 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 23 Oct 2011 14:47:21 -0400 Subject: [PATCH] Implement hoplite\filter\RawString --- base/filter.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/base/filter.php b/base/filter.php index 61a2bfd..ab5e8ef 100644 --- a/base/filter.php +++ b/base/filter.php @@ -36,6 +36,11 @@ function String($str) return str_replace($find, $replace, $str); } +function RawString($str) +{ + return $str; +} + function Int($int) { return intval($int); -- 2.22.5