diff --git a/secure/v_mailto.php b/secure/v_mailto.php index fab013a6c3..bc6801d6d7 100644 --- a/secure/v_mailto.php +++ b/secure/v_mailto.php @@ -38,20 +38,22 @@ //includes if (!defined('STDIN')) { include "root.php"; } require_once "resources/require.php"; -function rip_tags($string) { - // ----- remove HTML TAGs ----- - $string = preg_replace ('/<[^>]*>/', ' ', $string); - // ----- remove control characters ----- - - $string = str_replace("\r", '', $string); // --- replace with empty space - $string = str_replace("\n", ' ', $string); // --- replace with space - $string = str_replace("\t", ' ', $string); // --- replace with space +//define a function to remove html tags + function rip_tags($string) { + // ----- remove HTML TAGs ----- + $string = preg_replace ('/<[^>]*>/', ' ', $string); - // ----- remove multiple spaces ----- - $string = trim(preg_replace('/ {2,}/', ' ', $string)); - return $string; -} + // ----- remove control characters ----- + + $string = str_replace("\r", '', $string); // --- replace with empty space + $string = str_replace("\n", ' ', $string); // --- replace with space + $string = str_replace("\t", ' ', $string); // --- replace with space + + // ----- remove multiple spaces ----- + $string = trim(preg_replace('/ {2,}/', ' ', $string)); + return $string; + } //set init settings ini_set('max_execution_time',1800); //30 minutes