Changeset 6438 for trunk/src/includes/users/options.php
- Timestamp:
- 05/27/2017 05:04:31 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/users/options.php
r6359 r6438 20 20 function bbp_get_default_user_options() { 21 21 22 // Default options23 return apply_filters( 'bbp_get_default_user_options', array(22 // Filter & return 23 return (array) apply_filters( 'bbp_get_default_user_options', array( 24 24 '_bbp_last_posted' => '0', // For checking flooding 25 25 '_bbp_topic_count' => '0', // Total topics per site … … 225 225 : 'bbp_get_user_topic_count'; 226 226 227 // Filter & return 227 228 return apply_filters( $filter, $count, $user_id ); 228 229 } … … 369 370 $time = get_user_option( '_bbp_last_posted', $user_id ); 370 371 372 // Filter & return 371 373 return apply_filters( 'bbp_get_user_last_posted', $time, $user_id ); 372 374 }
Note: See TracChangeset
for help on using the changeset viewer.