From fc68f8c5ef8fa4f8b356c8902015c1bb267187d1 Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Sat, 6 Jul 2013 05:43:53 +0000 Subject: [PATCH] Remove check_string its not being used anymore. --- includes/checkstring.php | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 includes/checkstring.php diff --git a/includes/checkstring.php b/includes/checkstring.php deleted file mode 100644 index e5cf5abe7a..0000000000 --- a/includes/checkstring.php +++ /dev/null @@ -1,30 +0,0 @@ - - Portions created by the Initial Developer are Copyright (C) 2008-2012 - the Initial Developer. All Rights Reserved. - - Contributor(s): - Mark J Crane -*/ -function check_string($str) { - $str = str_replace ("\'", "''", $str); //escape the single quote - return $str; -} -?>