Skip to:
Content

BuddyPress.org

Changeset 2032 for trunk/bp-forums.php


Ignore:
Timestamp:
10/05/2009 06:05:05 PM (15 years ago)
Author:
apeatling
Message:

Removed ajax loader from friend and group search boxes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-forums.php

    r1995 r2032  
    168168
    169169    $query = new BB_Query( 'topic', 'topic_id=' . $topic_id );
     170
    170171    return $query->results[0];
    171172}
     
    203204    if ( !$topic_id = bb_insert_topic( array( 'topic_title' => stripslashes( $topic_title ), 'topic_slug' => $topic_slug, 'topic_poster' => $topic_poster, 'topic_poster_name' => $topic_poster_name, 'topic_last_poster' => $topic_last_poster, 'topic_last_poster_name' => $topic_last_poster_name, 'topic_start_time' => $topic_start_time, 'topic_time' => $topic_time, 'topic_open' => $topic_open, 'forum_id' => (int)$forum_id, 'tags' => $topic_tags ) ) )
    204205        return false;
    205    
     206
    206207    /* Now insert the first post. */
    207208    if ( !bp_forums_insert_post( array( 'topic_id' => $topic_id, 'post_text' => $topic_text, 'post_time' => $topic_time, 'poster_id' => $topic_poster ) ) )
Note: See TracChangeset for help on using the changeset viewer.