Changeset 7953
- Timestamp:
- 02/21/2014 03:22:48 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-templates/bp-legacy/buddypress-functions.php
r7952 r7953 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 if ( ! empty( $_POST['offset'] ) && $last_id = absint( $_POST['offset'] ) ) { 687 $last_id = isset( $_POST['offset'] ) ? absint( $_POST['offset'] ) : 0; 688 if ( $last_id ) { 688 689 $activity_args = array( 'offset' => $last_id ); 689 690 $bp->activity->new_update_id = $activity_id;
Note: See TracChangeset
for help on using the changeset viewer.