bbp_get_bcc_chunk_limit
bbp_get_bcc_chunk_limit
Appears in: bbpress.2.6.0, bbpress.2.6.1, bbpress.2.6.11, bbpress.2.6.12, bbpress.2.6.2, bbpress.2.6.3, bbpress.2.6.4, bbpress.2.6.5, bbpress.2.6.6, bbpress.2.6.9
Hook Type: filter
Displaying hooks found in version: bbpress.2.6.9apply_filters('bbp_get_bcc_chunk_limit') is found 1 times:
- /includes/common/functions.php line 14441440144114421443144414451446144714481449
*/
function
bbp_chunk_emails(
$args
=
array
() ) {
// Get the maximum number of Bcc's per chunk
$max_num
= apply_filters(
'bbp_get_bcc_chunk_limit'
, 40,
$args
);
// Look for "bcc: " in a case-insensitive way, and split into 2 sets
$match
=
'/^bcc: (\w+)/i'
;
$old_headers
= preg_grep(
$match
,
$args
[
'headers'
], PREG_GREP_INVERT );
$bcc_headers
= preg_grep(
$match
,
$args
[
'headers'
] );