Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
01/24/2011 08:59:41 AM (14 years ago)
Author:
johnjamesjacoby
Message:

If there is no topic_slug passed, do not call bb_get_id_from_slug

File:
1 edited

Legend:

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

    r3842 r3881  
    188188function bp_forums_get_topic_id_from_slug( $topic_slug ) {
    189189    do_action( 'bbpress_init' );
     190
     191    if ( empty( $topic_slug ) )
     192        return false;
     193
    190194    return bb_get_id_from_slug( 'topic', $topic_slug );
    191195}
Note: See TracChangeset for help on using the changeset viewer.