Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
04/03/2018 10:47:58 AM (8 years ago)
Author:
djpaul
Message:

Core: fix missing deprecation notice for certain functions.

See #7738

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-core/deprecated/3.0.php

    r11940 r11941  
    2121 */
    2222function bp_is_group_forums_active( $default = false ) {
     23    _deprecated_function( __FUNCTION__, '3.0', 'groups_get_group( $id )->enable_forum' );
     24
    2325    $is_active = function_exists( 'bbp_is_group_forums_active' ) ? bbp_is_group_forums_active( $default ) : $default;
    2426
     
    4547 */
    4648function bp_is_user_forums() {
     49    _deprecated_function( __FUNCTION__, '3.0', 'legacy forum support removed' );
    4750    return false;
    4851}
     
    5861 */
    5962function bp_is_group_forum() {
     63    _deprecated_function( __FUNCTION__, '3.0', 'legacy forum support removed' );
    6064    return false;
    6165}
     
    7175 */
    7276function bp_group_new_topic_button( $group = false ) {
     77    _deprecated_function( __FUNCTION__, '3.0', 'legacy forum support removed' );
    7378}
    7479
Note: See TracChangeset for help on using the changeset viewer.