Changeset 2088 for trunk/bp-xprofile.php
- Timestamp:
- 11/13/2009 01:01:37 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-xprofile.php
r2077 r2088 1 1 <?php 2 define ( 'BP_XPROFILE_DB_VERSION', '18 00' );2 define ( 'BP_XPROFILE_DB_VERSION', '1850' ); 3 3 4 4 /* Define the slug for the component */ … … 110 110 item_id bigint(20) NOT NULL, 111 111 user_id bigint(20) NOT NULL, 112 parent_id bigint(20) NOT NULL, 112 113 content longtext NOT NULL, 113 114 date_posted datetime NOT NULL, 114 115 KEY item_id (item_id), 115 KEY user_id (user_id) 116 KEY user_id (user_id), 117 KEY parent_id (parent_id) 116 118 ) {$charset_collate};"; 117 119 … … 530 532 return false; 531 533 532 if ( !$wire_post = bp_wire_new_post( $bp->displayed_user->id, $_POST['wire-post-textarea'], $bp->profile-> slug, false, $bp->profile->table_name_wire) ) {534 if ( !$wire_post = bp_wire_new_post( $bp->displayed_user->id, $_POST['wire-post-textarea'], $bp->profile->id ) ) { 533 535 bp_core_add_message( __( 'Wire message could not be posted. Please try again.', 'buddypress' ), 'error' ); 534 536 } else {
Note: See TracChangeset
for help on using the changeset viewer.