Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
05/20/2011 07:33:20 PM (14 years ago)
Author:
djpaul
Message:

Correct phpdoc for $bp global

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-activity/bp-activity-template.php

    r4378 r4400  
    208208 * Based on the $args passed, bp_has_activities() populates the $activities_template global.
    209209 *
    210  * @package BuddyPress Activity
    211  * @global $bp The global BuddyPress settings variable created in bp_core_setup_globals()
    212  *
     210 * @global BP_Activity_Template $activities_template
     211 * @global object $bp Global BuddyPress settings object
    213212 * @param mixed $args Arguments for limiting the contents of the activity loop. Can be passed as an associative array or as a URL argument string
    214213 * @return bool Returns true when activities are found
    215214 */
    216215function bp_has_activities( $args = '' ) {
    217     global $bp, $activities_template;
     216    global $activities_template, $bp;
    218217
    219218    /***
Note: See TracChangeset for help on using the changeset viewer.