Changeset 4560
- Timestamp:
- 12/07/2012 11:51:37 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/common/functions.php
r4552 r4560 561 561 ) ) ); 562 562 563 // Add the hidden (topic/reply) count title attribute strings because we don't need to run the math functions on these (see above) 564 if ( isset( $hidden_topic_title ) ) 565 $statistics['hidden_topic_title'] = $hidden_topic_title; 566 567 if ( isset( $hidden_reply_title ) ) 568 $statistics['hidden_reply_title'] = $hidden_reply_title; 563 // Add the hidden (topic/reply) count title attribute strings because we 564 // don't need to run the math functions on these (see above) 565 $statistics['hidden_topic_title'] = isset( $hidden_topic_title ) ? $hidden_topic_title : ''; 566 $statistics['hidden_reply_title'] = isset( $hidden_reply_title ) ? $hidden_reply_title : ''; 569 567 570 568 return apply_filters( 'bbp_get_statistics', $statistics, $args );
Note: See TracChangeset
for help on using the changeset viewer.