X-Git-Url: http://git.dj3c1t.com/?a=blobdiff_plain;f=web%2Fapp%2Fenv%2Fmodules%2Fmw_env_inputs.php;fp=web%2Fapp%2Fenv%2Fmodules%2Fmw_env_inputs.php;h=0000000000000000000000000000000000000000;hb=36ed114046cbe3d72a3589230e9f306a54fcc79d;hp=0ebd0429ba50dd7f455497fae5259e88e683df61;hpb=281c96e95451269f2614684b8de5be25862c8374;p=mtweb diff --git a/web/app/env/modules/mw_env_inputs.php b/web/app/env/modules/mw_env_inputs.php deleted file mode 100644 index 0ebd042..0000000 --- a/web/app/env/modules/mw_env_inputs.php +++ /dev/null @@ -1,43 +0,0 @@ -path("libs")."inputfilter.php"; - $allowed_tags = array( - "p", "span", "pre", "blockquote", "address", "hr", "br", - "img", - "strong", "em", "u", "i", "b", "s", - "a", - "ul", "ol", "li", - "h1", "h2", "h3", "h4", "h5", "h6" - ); - $allowed_attrs = array( - "style", - "src", "alt", "width", "height", - "href", "title" - ); - $input_filter = new InputFilter($allowed_tags, $allowed_attrs); - $_POST = $input_filter->process($_POST); - } - if($_FILES){ - foreach($_FILES as $file_key => $file_infos){ - $v_name = explode(".", $file_infos["name"]); - $ext = strtolower($v_name[count($v_name) - 1]); - if( - $ext != "png" - && $ext != "jpg" - && $ext != "jpeg" - && $ext != "gif" - ){ - unset($_FILES[$file_key]); - } - } - } - return true; - } - - } - -?> \ No newline at end of file