Ticket #8194: 8194.2.patch
File 8194.2.patch, 3.0 KB (added by , 5 years ago) |
---|
-
src/bp-activity/js/mentions.js
135 135 }, 136 136 137 137 /** 138 * Override default behavio ur which inserts junk tags in the WordPress Visual editor.138 * Override default behavior which inserts junk tags in the WordPress Visual editor. 139 139 * 140 140 * @param {unknown} $inputor Element which we're inserting content into. 141 141 * @param {string) content The content that will be inserted. -
tests/phpunit/testcases/groups/template.php
527 527 /** 528 528 * Default sort order should be the joined date 529 529 * 530 * @ticket tBP5106530 * @ticket BP5106 531 531 * @group bp_group_has_members 532 532 */ 533 533 public function test_bp_group_has_members_default_order() { -
tests/phpunit/testcases/members/class-bp-signup.php
65 65 * @group add 66 66 */ 67 67 public function test_add_no_visibility_level_set_should_use_default_visiblity_level() { 68 // Update field_1's default visib lity to 'adminsonly'68 // Update field_1's default visibility to 'adminsonly'. 69 69 bp_xprofile_update_field_meta( 1, 'default_visibility', 'adminsonly' ); 70 70 71 71 // Add new signup without a custom field visibility set for field_1. -
tests/phpunit/testcases/notifications/class-bp-notifications-notification.php
33 33 $actual = wp_list_pluck( $n, 'id' ); 34 34 $this->assertEquals( $expected, $actual ); 35 35 36 // reset co pmonent toggles36 // reset component toggles. 37 37 if ( $groups_toggle ) { 38 38 buddypress()->active_components['groups'] = 1; 39 39 } else { … … 75 75 // Check that the correct items are pulled up 76 76 $this->assertEquals( 1, $n ); 77 77 78 // reset co pmonent toggles78 // reset component toggles. 79 79 if ( $groups_toggle ) { 80 80 buddypress()->active_components['groups'] = 1; 81 81 } else { -
tests/phpunit/testcases/xprofile/cache.php
133 133 bp_xprofile_add_meta( $f, 'field', 'field_foo', 'field_bar' ); 134 134 bp_xprofile_add_meta( $d->id, 'data', 'data_foo', 'data_bar' ); 135 135 136 // prime cache136 // Prime cache. 137 137 bp_has_profile( array( 138 138 'user_id' => $u, 139 139 'profile_group_id' => $g,