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/2.8.php

    r11743 r11941  
    2020 */
    2121function bp_core_admin_is_running_php53_or_greater() {
     22    _deprecated_function( __FUNCTION__, '2.8' );
    2223    return version_compare( PHP_VERSION, '5.3', '>=' );
    2324}
     
    7172 */
    7273function bp_core_admin_remove_buddypress_from_update_transient( $retval ) {
     74    _deprecated_function( __FUNCTION__, '2.8' );
     75
    7376    $loader = basename( constant( 'BP_PLUGIN_DIR' ) ) . '/bp-loader.php';
    7477
     
    97100 */
    98101function bp_core_admin_php52_plugin_row( $file, $plugin_data ) {
     102    _deprecated_function( __FUNCTION__, '2.8' );
     103
    99104    if ( is_multisite() && ! is_network_admin() ) {
    100105        return;
     
    157162 */
    158163function bp_core_admin_php53_admin_notice() {
     164    _deprecated_function( __FUNCTION__, '2.8' );
     165
    159166    // If not on the Plugins page, stop now.
    160167    if ( 'plugins' !== get_current_screen()->parent_base ) {
Note: See TracChangeset for help on using the changeset viewer.