Skip to:
Content

BuddyPress.org

Ticket #6116: 6116-03.patch

File 6116-03.patch, 1008 bytes (added by hnla, 10 years ago)

Add additional form submit 'type' check

  • src/bp-templates/bp-legacy/js/buddypress.js

     
    13661366                var target = jq(event.target),
    13671367                        object;
    13681368
    1369                 if ( target.attr('type') === 'submit' ) {
     1369                if ( target.attr('type') === 'submit' || target.attr('type') === 'button' ) {
    13701370                        //var css_id = jq('.item-list-tabs li.selected').attr('id').split( '-' );
    13711371                        object = 'messages';
    13721372
    1373                         bp_filter_request( object, jq.cookie('bp-' + object + '-filter'), jq.cookie('bp-' + object + '-scope') , 'div.' + object, target.parent().children('label').children('input').val(), 1, jq.cookie('bp-' + object + '-extras') );
     1373                        bp_filter_request( object, jq.cookie('bp-' + object + '-filter'), jq.cookie('bp-' + object + '-scope') , 'div.' + object, jq('#messages_search').val(), 1, jq.cookie('bp-' + object + '-extras') );
    13741374
    13751375                        return false;
    13761376                }