Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
09/02/2010 06:14:02 PM (15 years ago)
Author:
johnjamesjacoby
Message:

Fixes #2614 props Paul Gibbs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/1.2/bp-groups.php

    r3218 r3229  
    19091909}
    19101910
     1911/**
     1912 * Is the specified user the creator of the group?
     1913 *
     1914 * @param int $user_id
     1915 * @param int $group_id
     1916 * @since 1.2.6
     1917 * @uses BP_Groups_Member
     1918 */
     1919function groups_is_user_creator( $user_id, $group_id ) {
     1920    return BP_Groups_Member::check_is_creator( $user_id, $group_id );
     1921}
     1922
    19111923/*** Group Activity Posting **************************************************/
    19121924
Note: See TracChangeset for help on using the changeset viewer.