bbp_number_not_negative
bbp_number_not_negative
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_number_not_negative') is found 1 times:
- /includes/common/formatting.php line 552548549550551552553554555556557558
// Pick the maximum value, never less than zero
$not_less_than_zero
= max( 0,
$int
);
// Filter & return
return
(int) apply_filters(
'bbp_number_not_negative'
,
$not_less_than_zero
,
$int
,
$number
);
}
/**
* A bbPress specific method of formatting numeric values
*
* @since 2.0.0 bbPress (r2486)