mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-10 10:44:20 +02:00
[feature/attach-dl] Added a function for checking allowed extensions
PHPBB3-11042
This commit is contained in:
@@ -613,3 +613,26 @@ function phpbb_increment_downloads($db, $ids)
|
||||
WHERE ' . $db->sql_in_set('attach_id', $ids);
|
||||
$db->sql_query($sql);
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks every attachment to see if it has an allowed extension
|
||||
*
|
||||
* @param array $extensions As generated by phpbb_cache_service::obtain_attach_extensions
|
||||
* @param array &$attachments An array of attachments to check
|
||||
*
|
||||
* @return bool Whether any of the attachments had allowed extensions
|
||||
*/
|
||||
function phpbb_check_attach_extensions($extensions, &$attachments)
|
||||
{
|
||||
$new_ary = array();
|
||||
foreach ($attachments as $attach)
|
||||
{
|
||||
if (isset($extensions['_allowed_'][$attach['extension']]))
|
||||
{
|
||||
$new_ary[] = $attach;
|
||||
}
|
||||
}
|
||||
|
||||
$attachments = $new_ary;
|
||||
return !empty($attachments);
|
||||
}
|
||||
|
Reference in New Issue
Block a user