Changeset 130
- Timestamp:
- 06/08/2005 08:59:20 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/bb-includes/functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bb-includes/functions.php
r129 r130 342 342 if ( $forum && $title ) { 343 343 $bbdb->query("INSERT INTO $bbdb->topics 344 (topic_title, topic_poster, topic_poster_name, topic_last_poster, topic_last_poster_name, topic_time, forum_id )344 (topic_title, topic_poster, topic_poster_name, topic_last_poster, topic_last_poster_name, topic_time, forum_id, topic_start_time) 345 345 VALUES 346 ('$title', $current_user->user_id, '$current_user->username', $current_user->user_id, '$current_user->username', '$now', $forum )");346 ('$title', $current_user->user_id, '$current_user->username', $current_user->user_id, '$current_user->username', '$now', $forum, '$now')"); 347 347 $topic_id = $bbdb->insert_id; 348 348 if ( !empty( $tags ) )
Note: See TracChangeset
for help on using the changeset viewer.