remove debugPrint

git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@13184 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
khongchi 2013-11-08 04:27:55 +00:00
parent 2ac48d1a3b
commit e0879ea45c

View file

@ -23,7 +23,6 @@ class UploadFileFilter
if (FALSE !== $has_php_tag && FALSE !== strpos($content, $v))
{
fclose($fp);
debugPrint('unvalid file');
return FALSE;
}
}
@ -31,7 +30,6 @@ class UploadFileFilter
fclose($fp);
debugPrint('valid file');
return TRUE;
}
}