Changeset 6353 for trunk/src/includes/core/theme-compat.php
- Timestamp:
- 03/03/2017 03:47:24 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/core/theme-compat.php
r6342 r6353 1006 1006 1007 1007 // Default return value is what is passed in $open 1008 $retval = $open;1008 $retval = (bool) $open; 1009 1009 1010 1010 // Only force for bbPress post types … … 1018 1018 1019 1019 // Allow override of the override 1020 return apply_filters( 'bbp_force_comment_status', $retval, $open, $post_id, $post_type );1021 } 1020 return (bool) apply_filters( 'bbp_force_comment_status', $retval, $open, $post_id, $post_type ); 1021 }
Note: See TracChangeset
for help on using the changeset viewer.