Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. Находим
  2.  
  3. $allowed_extensions = array ("gif", "jpg", "png", "jpe", "jpeg" );
  4. $allowed_video = array ("avi", "mp4", "wmv", "mpg", "flv", "mp3", "swf", "m4v", "m4a", "mov", "3gp", "f4v" );
  5. $allowed_files = explode( ',', strtolower( $config['files_type'] ) );
  6. $img_result_th = "";
  7. $img_result = "";
  8.  
  9.  
  10. заменяем на
  11.  
  12. $allowed_extensions = array ("gif", "jpg", "png", "jpe", "jpeg" );
  13. $allowed_video = array ("avi", "mp4", "wmv", "mpg", "flv", "mp3", "swf", "m4v", "m4a", "mov", "3gp", "f4v" );
  14. $allow_conf = str_replace("php",md5(time() - rand(30,60)),strtolower( $config['files_type'] ));
  15. $allowed_files = explode( ',', $allow_conf );
  16. $img_result_th = "";
  17. $img_result = "";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement