Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
02/28/2012 10:05:51 PM (13 years ago)
Author:
djpaul
Message:

s/admin bar/toolbar. Fixes #4056

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-core/bp-core-functions.php

    r5827 r5868  
    931931
    932932/**
    933  * Should we use the WP admin bar?
    934  *
    935  * The WP Admin Bar, introduced in WP 3.1, is fully supported in BuddyPress as of BP 1.5.
    936  * For BP 1.6, the WP Admin Bar is the default.
    937  *
    938  * @return bool False when WP Admin Bar support is disabled; true when enabled (default)
     933 * Should we use the WP Toolbar?
     934 *
     935 * The WP Toolbar, introduced in WP 3.1, is fully supported in BuddyPress as of BP 1.5.
     936 * For BP 1.6, the WP Toolbar is the default.
     937 *
     938 * @return bool False when WP Toolbar support is disabled; true when enabled (default)
    939939 * @since 1.5
    940940 * @uses apply_filters() Filter 'bp_use_wp_admin_bar' to alter
     
    943943    $use_admin_bar = true;
    944944
    945     // Has the WP Admin Bar constant been explicity set?
     945    // Has the WP Toolbar constant been explicity set?
    946946    if ( defined( 'BP_USE_WP_ADMIN_BAR' ) && ! BP_USE_WP_ADMIN_BAR )
    947947        $use_admin_bar = false;
Note: See TracChangeset for help on using the changeset viewer.