From: Robert Sesek Date: Sun, 23 Oct 2011 18:47:21 +0000 (-0400) Subject: Implement hoplite\filter\RawString X-Git-Tag: api-2~28 X-Git-Url: https://src.bluestatic.org/?a=commitdiff_plain;h=7766c2c2e9d618b91322a7a617613961a21ab5b4;p=hoplite.git Implement hoplite\filter\RawString --- 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);