diff --git bp-templates/bp-legacy/buddypress-functions.php bp-templates/bp-legacy/buddypress-functions.php
index d8963f5..b01e643 100644
|
|
function bp_legacy_theme_post_update() { |
684 | 684 | if ( empty( $activity_id ) ) |
685 | 685 | exit( '-1<div id="message" class="error"><p>' . __( 'There was a problem posting your update, please try again.', 'buddypress' ) . '</p></div>' ); |
686 | 686 | |
687 | | $last_id = isset( $_POST['offset'] ) ? absint( $_POST['offset'] ) : 0; |
| 687 | $last_id = isset( $_POST['offset'] ) ? absint( $_POST['offset'] ) + 1 : 0; |
688 | 688 | if ( $last_id ) { |
689 | 689 | $activity_args = array( 'offset' => $last_id ); |
690 | 690 | $bp->activity->new_update_id = $activity_id; |