Changeset 3133
- Timestamp:
- 05/10/2011 06:29:10 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbp-includes/bbp-forum-functions.php
r3095 r3133 750 750 $forum_ids = get_option( '_bbp_hidden_forums', array() ); 751 751 752 return apply_filters( 'bbp_get_hidden_forum_ids', $forum_ids );752 return apply_filters( 'bbp_get_hidden_forum_ids', (array) $forum_ids ); 753 753 } 754 754 … … 767 767 $forum_ids = get_option( '_bbp_private_forums', array() ); 768 768 769 return apply_filters( 'bbp_get_private_forum_ids', $forum_ids );769 return apply_filters( 'bbp_get_private_forum_ids', (array) $forum_ids ); 770 770 } 771 771
Note: See TracChangeset
for help on using the changeset viewer.