Skip to:
Content

BuddyPress.org

Ticket #5528: activity.patch

File activity.patch, 781 bytes (added by pross, 11 years ago)
  • bp-templates/bp-legacy/js/buddypress.js

     
    112112                var content = jq("#whats-new").val();
    113113                var firstrow = jq( '#buddypress ul.activity-list li' ).first();
    114114                var activity_row = firstrow;
     115                var timestamp = false
    115116
    116117                if ( activity_row.hasClass( 'load-newest' ) ) {
    117118                        activity_row = firstrow.next();
    118119                }
    119 
    120                 timestamp = activity_row.prop( 'class' ).match( /date-recorded-([0-9]+)/ );
     120                if( activity_row.prop( 'class' ) )
     121                        timestamp = activity_row.prop( 'class' ).match( /date-recorded-([0-9]+)/ );
    121122               
    122123                if ( timestamp ) {
    123124                        last_date_recorded = timestamp[1];