MyBB Community Forums

Full Version: post avatar image format gif only
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
in my forum i want to allow user to upload only gif file. for other file a warning must come
Open ./inc/functions_upload.php:

Find: if(!preg_match("#^(gif|jpg|jpeg|jpe|bmp|png)$#i", $ext))

Replace: if(!preg_match("#^(gif)$#i", $ext))

Done!