BuddyPress - Version 6.3.0

Version Description

See: https://codex.buddypress.org/releases/version-6-3-0/

Download this release

Release Info

Developer imath
Plugin Icon 128x128 BuddyPress
Version 6.3.0
Comparing to
See all releases

Code changes from version 6.2.0 to 6.3.0

bp-core/classes/class-bp-phpmailer.php CHANGED
@@ -43,7 +43,9 @@ class BP_PHPMailer implements BP_Email_Delivery {
43
  * WordPress 5.5 deprecated version 5.2 of PHPMailer
44
  * and is now using version 6.0 of PHPMailer.
45
  */
46
- if ( file_exists( ABSPATH . WPINC . '/PHPMailer/PHPMailer.php' ) ) {
 
 
47
  if ( ! ( $phpmailer instanceof PHPMailer\PHPMailer\PHPMailer ) ) {
48
  if ( ! class_exists( 'PHPMailer\\PHPMailer\\PHPMailer' ) ) {
49
  require_once ABSPATH . WPINC . '/PHPMailer/PHPMailer.php';
@@ -51,8 +53,7 @@ class BP_PHPMailer implements BP_Email_Delivery {
51
  require_once ABSPATH . WPINC . '/PHPMailer/Exception.php';
52
  }
53
 
54
- $phpmailer = new PHPMailer\PHPMailer\PHPMailer( true );
55
- $phpmailer_is_6_0 = true;
56
  }
57
  } else {
58
  if ( ! ( $phpmailer instanceof PHPMailer ) ) {
43
  * WordPress 5.5 deprecated version 5.2 of PHPMailer
44
  * and is now using version 6.0 of PHPMailer.
45
  */
46
+ if ( bp_get_major_wp_version() >= 5.5 ) {
47
+ $phpmailer_is_6_0 = true;
48
+
49
  if ( ! ( $phpmailer instanceof PHPMailer\PHPMailer\PHPMailer ) ) {
50
  if ( ! class_exists( 'PHPMailer\\PHPMailer\\PHPMailer' ) ) {
51
  require_once ABSPATH . WPINC . '/PHPMailer/PHPMailer.php';
53
  require_once ABSPATH . WPINC . '/PHPMailer/Exception.php';
54
  }
55
 
56
+ $phpmailer = new PHPMailer\PHPMailer\PHPMailer( true );
 
57
  }
58
  } else {
59
  if ( ! ( $phpmailer instanceof PHPMailer ) ) {
bp-groups/bp-groups-notifications.php CHANGED
@@ -151,8 +151,13 @@ function groups_notification_new_membership_request( $requesting_user_id = 0, $a
151
  'user_id' => $requesting_user_id,
152
  'item_id' => $group_id,
153
  ) );
 
154
  if ( $requests ) {
155
  $request_message = current( $requests )->content;
 
 
 
 
156
  }
157
 
158
  $group = groups_get_group( $group_id );
151
  'user_id' => $requesting_user_id,
152
  'item_id' => $group_id,
153
  ) );
154
+
155
  if ( $requests ) {
156
  $request_message = current( $requests )->content;
157
+
158
+ if ( $request_message ) {
159
+ $request_message = "\n" . $request_message . "\n";
160
+ }
161
  }
162
 
163
  $group = groups_get_group( $group_id );
bp-groups/screens/single/request-membership.php CHANGED
@@ -14,20 +14,24 @@
14
  */
15
  function groups_screen_group_request_membership() {
16
 
17
- if ( !is_user_logged_in() )
18
  return false;
 
19
 
20
  $bp = buddypress();
21
 
22
- if ( 'private' != $bp->groups->current_group->status )
23
  return false;
 
24
 
25
  // If the user is already invited, accept invitation.
26
  if ( groups_check_user_has_invite( bp_loggedin_user_id(), $bp->groups->current_group->id ) ) {
27
- if ( groups_accept_invite( bp_loggedin_user_id(), $bp->groups->current_group->id ) )
28
  bp_core_add_message( __( 'Group invite accepted', 'buddypress' ) );
29
- else
30
  bp_core_add_message( __( 'There was an error accepting the group invitation. Please try again.', 'buddypress' ), 'error' );
 
 
31
  bp_core_redirect( bp_get_group_permalink( $bp->groups->current_group ) );
32
  }
33
 
@@ -35,10 +39,22 @@ function groups_screen_group_request_membership() {
35
  if ( isset( $_POST['group-request-send']) ) {
36
 
37
  // Check the nonce.
38
- if ( !check_admin_referer( 'groups_request_membership' ) )
39
  return false;
 
 
 
 
 
 
 
 
 
 
 
 
40
 
41
- if ( !groups_send_membership_request( [ 'user_id' => bp_loggedin_user_id(), 'group_id' => $bp->groups->current_group->id ] ) ) {
42
  bp_core_add_message( __( 'There was an error sending your group membership request. Please try again.', 'buddypress' ), 'error' );
43
  } else {
44
  bp_core_add_message( __( 'Your membership request was sent to the group administrator successfully. You will be notified when the group administrator responds to your request.', 'buddypress' ) );
@@ -63,4 +79,4 @@ function groups_screen_group_request_membership() {
63
  * @param string $value Path to a group's Request Membership template.
64
  */
65
  bp_core_load_template( apply_filters( 'groups_template_group_request_membership', 'groups/single/home' ) );
66
- }
14
  */
15
  function groups_screen_group_request_membership() {
16
 
17
+ if ( ! is_user_logged_in() ) {
18
  return false;
19
+ }
20
 
21
  $bp = buddypress();
22
 
23
+ if ( 'private' != $bp->groups->current_group->status ) {
24
  return false;
25
+ }
26
 
27
  // If the user is already invited, accept invitation.
28
  if ( groups_check_user_has_invite( bp_loggedin_user_id(), $bp->groups->current_group->id ) ) {
29
+ if ( groups_accept_invite( bp_loggedin_user_id(), $bp->groups->current_group->id ) ) {
30
  bp_core_add_message( __( 'Group invite accepted', 'buddypress' ) );
31
+ } else {
32
  bp_core_add_message( __( 'There was an error accepting the group invitation. Please try again.', 'buddypress' ), 'error' );
33
+ }
34
+
35
  bp_core_redirect( bp_get_group_permalink( $bp->groups->current_group ) );
36
  }
37
 
39
  if ( isset( $_POST['group-request-send']) ) {
40
 
41
  // Check the nonce.
42
+ if ( ! check_admin_referer( 'groups_request_membership' ) ) {
43
  return false;
44
+ }
45
+
46
+ // Default arguments for the membership request.
47
+ $request_args = array(
48
+ 'user_id' => bp_loggedin_user_id(),
49
+ 'group_id' => $bp->groups->current_group->id
50
+ );
51
+
52
+ // If the member added a message to their request include it into the request arguments.
53
+ if ( isset( $_POST['group-request-membership-comments'] ) && $_POST['group-request-membership-comments'] ) {
54
+ $request_args['content'] = strip_tags( wp_unslash( $_POST['group-request-membership-comments'] ) );
55
+ }
56
 
57
+ if ( ! groups_send_membership_request( $request_args ) ) {
58
  bp_core_add_message( __( 'There was an error sending your group membership request. Please try again.', 'buddypress' ), 'error' );
59
  } else {
60
  bp_core_add_message( __( 'Your membership request was sent to the group administrator successfully. You will be notified when the group administrator responds to your request.', 'buddypress' ) );
79
  * @param string $value Path to a group's Request Membership template.
80
  */
81
  bp_core_load_template( apply_filters( 'groups_template_group_request_membership', 'groups/single/home' ) );
82
+ }
bp-loader.php CHANGED
@@ -15,7 +15,7 @@
15
  * Description: BuddyPress adds community features to WordPress. Member Profiles, Activity Streams, Direct Messaging, Notifications, and more!
16
  * Author: The BuddyPress Community
17
  * Author URI: https://buddypress.org/
18
- * Version: 6.2.0
19
  * Text Domain: buddypress
20
  * Domain Path: /bp-languages/
21
  * License: GPLv2 or later (license.txt)
15
  * Description: BuddyPress adds community features to WordPress. Member Profiles, Activity Streams, Direct Messaging, Notifications, and more!
16
  * Author: The BuddyPress Community
17
  * Author URI: https://buddypress.org/
18
+ * Version: 6.3.0
19
  * Text Domain: buddypress
20
  * Domain Path: /bp-languages/
21
  * License: GPLv2 or later (license.txt)
bp-templates/bp-nouveau/includes/groups/ajax.php CHANGED
@@ -3,7 +3,7 @@
3
  * Groups Ajax functions
4
  *
5
  * @since 3.0.0
6
- * @version 4.4.0
7
  */
8
 
9
  // Exit if accessed directly.
@@ -407,21 +407,9 @@ function bp_nouveau_ajax_send_group_invites() {
407
  wp_send_json_error( $response );
408
  }
409
 
410
- if ( ! empty( $_POST['message'] ) ) {
411
- $bp->groups->invites_message = wp_kses( wp_unslash( $_POST['message'] ), array() );
412
-
413
- add_filter( 'groups_notification_group_invites_message', 'bp_nouveau_groups_invites_custom_message', 10, 1 );
414
- }
415
-
416
  // Send the invites.
417
  groups_send_invites( array( 'group_id' => $group_id ) );
418
 
419
- if ( ! empty( $_POST['message'] ) ) {
420
- unset( $bp->groups->invites_message );
421
-
422
- remove_filter( 'groups_notification_group_invites_message', 'bp_nouveau_groups_invites_custom_message', 10, 1 );
423
- }
424
-
425
  if ( array_search( false, $invited ) ) {
426
  $errors = array_keys( $invited, false );
427
 
3
  * Groups Ajax functions
4
  *
5
  * @since 3.0.0
6
+ * @version 6.3.0
7
  */
8
 
9
  // Exit if accessed directly.
407
  wp_send_json_error( $response );
408
  }
409
 
 
 
 
 
 
 
410
  // Send the invites.
411
  groups_send_invites( array( 'group_id' => $group_id ) );
412
 
 
 
 
 
 
 
413
  if ( array_search( false, $invited ) ) {
414
  $errors = array_keys( $invited, false );
415
 
bp-templates/bp-nouveau/includes/groups/functions.php CHANGED
@@ -3,7 +3,7 @@
3
  * Groups functions
4
  *
5
  * @since 3.0.0
6
- * @version 5.0.0
7
  */
8
 
9
  // Exit if accessed directly.
@@ -363,9 +363,16 @@ function bp_nouveau_group_setup_nav() {
363
  }
364
 
365
  /**
 
 
366
  * @since 3.0.0
 
 
 
367
  */
368
  function bp_nouveau_groups_invites_custom_message( $message = '' ) {
 
 
369
  if ( empty( $message ) ) {
370
  return $message;
371
  }
3
  * Groups functions
4
  *
5
  * @since 3.0.0
6
+ * @version 6.3.0
7
  */
8
 
9
  // Exit if accessed directly.
363
  }
364
 
365
  /**
366
+ * Includes a message into the sent invitation email.
367
+ *
368
  * @since 3.0.0
369
+ * @deprecated 6.3.0
370
+ *
371
+ * @param string $message The message to send with the invite
372
  */
373
  function bp_nouveau_groups_invites_custom_message( $message = '' ) {
374
+ _deprecated_function( __FUNCTION__, '6.3.0' );
375
+
376
  if ( empty( $message ) ) {
377
  return $message;
378
  }
buddypress.pot CHANGED
@@ -9,7 +9,7 @@ msgstr ""
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2020-08-06T20:59:51+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.4.0\n"
15
  "X-Domain: buddypress\n"
@@ -700,7 +700,7 @@ msgstr ""
700
  #: bp-core/admin/bp-core-admin-tools.php:600
701
  #: bp-friends/bp-friends-functions.php:962
702
  #: bp-friends/bp-friends-notifications.php:256
703
- #: bp-groups/bp-groups-notifications.php:1138
704
  #: bp-messages/bp-messages-notifications.php:268
705
  #: bp-settings/bp-settings-functions.php:135
706
  #: bp-templates/bp-legacy/buddypress/members/register.php:319
@@ -713,7 +713,7 @@ msgstr ""
713
  #: bp-core/admin/bp-core-admin-tools.php:602
714
  #: bp-friends/bp-friends-functions.php:962
715
  #: bp-friends/bp-friends-notifications.php:257
716
- #: bp-groups/bp-groups-notifications.php:1139
717
  #: bp-messages/bp-messages-notifications.php:269
718
  #: bp-settings/bp-settings-functions.php:136
719
  #: bp-templates/bp-legacy/buddypress/members/register.php:320
@@ -731,11 +731,11 @@ msgstr ""
731
  #: bp-activity/bp-activity-notifications.php:433
732
  #: bp-friends/bp-friends-notifications.php:267
733
  #: bp-friends/bp-friends-notifications.php:279
734
- #: bp-groups/bp-groups-notifications.php:1149
735
- #: bp-groups/bp-groups-notifications.php:1161
736
- #: bp-groups/bp-groups-notifications.php:1173
737
- #: bp-groups/bp-groups-notifications.php:1185
738
- #: bp-groups/bp-groups-notifications.php:1197
739
  #: bp-messages/bp-messages-notifications.php:279
740
  msgid "Yes, send email"
741
  msgstr ""
@@ -745,11 +745,11 @@ msgstr ""
745
  #: bp-activity/bp-activity-notifications.php:437
746
  #: bp-friends/bp-friends-notifications.php:271
747
  #: bp-friends/bp-friends-notifications.php:283
748
- #: bp-groups/bp-groups-notifications.php:1153
749
- #: bp-groups/bp-groups-notifications.php:1165
750
- #: bp-groups/bp-groups-notifications.php:1177
751
- #: bp-groups/bp-groups-notifications.php:1189
752
- #: bp-groups/bp-groups-notifications.php:1201
753
  #: bp-messages/bp-messages-notifications.php:283
754
  msgid "No, do not send email"
755
  msgstr ""
@@ -3600,7 +3600,7 @@ msgstr ""
3600
 
3601
  #: bp-core/bp-core-template.php:3145
3602
  #: bp-groups/bp-groups-template.php:3467
3603
- #: bp-templates/bp-nouveau/includes/groups/functions.php:544
3604
  msgid "Create a Group"
3605
  msgstr ""
3606
 
@@ -5008,7 +5008,7 @@ msgid "Those users are already friends or have sent friendship request(s) recent
5008
  msgstr ""
5009
 
5010
  #: bp-friends/classes/class-bp-rest-friends-endpoint.php:329
5011
- #: bp-templates/bp-nouveau/includes/groups/functions.php:488
5012
  msgid "You are not allowed to perform this action."
5013
  msgstr ""
5014
 
@@ -5809,100 +5809,100 @@ msgctxt "Group update email text"
5809
  msgid "* Permalink changed from \"%1$s\" to \"%2$s\"."
5810
  msgstr ""
5811
 
5812
- #: bp-groups/bp-groups-notifications.php:256
5813
  msgid "an administrator"
5814
  msgstr ""
5815
 
5816
- #: bp-groups/bp-groups-notifications.php:259
5817
  msgid "a moderator"
5818
  msgstr ""
5819
 
5820
  #. translators: 1: number of group membership requests. 2: group name.
5821
- #: bp-groups/bp-groups-notifications.php:400
5822
  msgid "%1$d new membership requests for the group \"%2$s\""
5823
  msgstr ""
5824
 
5825
  #. translators: %s: member name
5826
- #: bp-groups/bp-groups-notifications.php:447
5827
  msgid "%s requests group membership"
5828
  msgstr ""
5829
 
5830
  #. translators: 1: number of accepted group membership requests. 2: group name.
5831
- #: bp-groups/bp-groups-notifications.php:503
5832
  msgid "%1$d accepted group membership requests for the group \"%2$s\""
5833
  msgstr ""
5834
 
5835
  #. translators: %s: group name.
5836
- #: bp-groups/bp-groups-notifications.php:543
5837
  msgid "Membership for group \"%s\" accepted"
5838
  msgstr ""
5839
 
5840
  #. translators: 1: number of accepted group membership requests. 2: group name.
5841
- #: bp-groups/bp-groups-notifications.php:594
5842
  msgid "%1$d rejected group membership requests for the group \"%2$s\""
5843
  msgstr ""
5844
 
5845
  #. translators: %s: group name.
5846
- #: bp-groups/bp-groups-notifications.php:634
5847
  msgid "Membership for group \"%s\" rejected"
5848
  msgstr ""
5849
 
5850
  #. translators: %d: number of groups the user has been promoted admin for
5851
- #: bp-groups/bp-groups-notifications.php:684
5852
  msgid "You were promoted to an admin in %d groups"
5853
  msgstr ""
5854
 
5855
  #. translators: %s: group name.
5856
- #: bp-groups/bp-groups-notifications.php:720
5857
  msgid "You were promoted to an admin in the group \"%s\""
5858
  msgstr ""
5859
 
5860
  #. translators: %d: number of groups the user has been promoted mod for
5861
- #: bp-groups/bp-groups-notifications.php:768
5862
  msgid "You were promoted to a mod in %d groups"
5863
  msgstr ""
5864
 
5865
  #. translators: %s: group name.
5866
- #: bp-groups/bp-groups-notifications.php:804
5867
  msgid "You were promoted to a mod in the group \"%s\""
5868
  msgstr ""
5869
 
5870
  #. translators: %d: number of group invites
5871
- #: bp-groups/bp-groups-notifications.php:853
5872
  msgid "You have %d new group invitations"
5873
  msgstr ""
5874
 
5875
  #. translators: %s: group name.
5876
- #: bp-groups/bp-groups-notifications.php:888
5877
  msgid "You have an invitation to the group: %s"
5878
  msgstr ""
5879
 
5880
- #: bp-groups/bp-groups-notifications.php:1137
5881
  msgctxt "Group settings on notification settings page"
5882
  msgid "Groups"
5883
  msgstr ""
5884
 
5885
- #: bp-groups/bp-groups-notifications.php:1146
5886
  msgctxt "group settings on notification settings page"
5887
  msgid "A member invites you to join a group"
5888
  msgstr ""
5889
 
5890
- #: bp-groups/bp-groups-notifications.php:1158
5891
  msgctxt "group settings on notification settings page"
5892
  msgid "Group information is updated"
5893
  msgstr ""
5894
 
5895
- #: bp-groups/bp-groups-notifications.php:1170
5896
  msgctxt "group settings on notification settings page"
5897
  msgid "You are promoted to a group administrator or moderator"
5898
  msgstr ""
5899
 
5900
- #: bp-groups/bp-groups-notifications.php:1182
5901
  msgctxt "group settings on notification settings page"
5902
  msgid "A member requests to join a private group for which you are an admin"
5903
  msgstr ""
5904
 
5905
- #: bp-groups/bp-groups-notifications.php:1194
5906
  msgctxt "group settings on notification settings page"
5907
  msgid "Your request to join a group has been approved or denied"
5908
  msgstr ""
@@ -6104,7 +6104,7 @@ msgstr ""
6104
  #: bp-templates/bp-legacy/buddypress/members/single/friends.php:24
6105
  #: bp-templates/bp-legacy/buddypress/members/single/groups.php:25
6106
  #: bp-templates/bp-nouveau/includes/blogs/functions.php:108
6107
- #: bp-templates/bp-nouveau/includes/groups/functions.php:602
6108
  #: bp-templates/bp-nouveau/includes/members/functions.php:102
6109
  #: bp-templates/bp-nouveau/includes/members/functions.php:120
6110
  msgid "Alphabetical"
@@ -7131,19 +7131,19 @@ msgstr ""
7131
  msgid "Group membership request rejected"
7132
  msgstr ""
7133
 
7134
- #: bp-groups/screens/single/request-membership.php:28
7135
  msgid "Group invite accepted"
7136
  msgstr ""
7137
 
7138
- #: bp-groups/screens/single/request-membership.php:30
7139
  msgid "There was an error accepting the group invitation. Please try again."
7140
  msgstr ""
7141
 
7142
- #: bp-groups/screens/single/request-membership.php:42
7143
  msgid "There was an error sending your group membership request. Please try again."
7144
  msgstr ""
7145
 
7146
- #: bp-groups/screens/single/request-membership.php:44
7147
  msgid "Your membership request was sent to the group administrator successfully. You will be notified when the group administrator responds to your request."
7148
  msgstr ""
7149
 
@@ -9785,7 +9785,7 @@ msgstr ""
9785
  #: bp-templates/bp-legacy/buddypress/members/single/friends.php:22
9786
  #: bp-templates/bp-legacy/buddypress/members/single/groups.php:22
9787
  #: bp-templates/bp-nouveau/includes/blogs/functions.php:106
9788
- #: bp-templates/bp-nouveau/includes/groups/functions.php:599
9789
  #: bp-templates/bp-nouveau/includes/members/functions.php:97
9790
  msgid "Last Active"
9791
  msgstr ""
@@ -10027,13 +10027,13 @@ msgstr ""
10027
 
10028
  #: bp-templates/bp-legacy/buddypress/groups/index.php:111
10029
  #: bp-templates/bp-legacy/buddypress/members/single/groups.php:23
10030
- #: bp-templates/bp-nouveau/includes/groups/functions.php:600
10031
  msgid "Most Members"
10032
  msgstr ""
10033
 
10034
  #: bp-templates/bp-legacy/buddypress/groups/index.php:112
10035
  #: bp-templates/bp-legacy/buddypress/members/single/groups.php:24
10036
- #: bp-templates/bp-nouveau/includes/groups/functions.php:601
10037
  msgid "Newly Created"
10038
  msgstr ""
10039
 
@@ -10375,7 +10375,7 @@ msgstr ""
10375
 
10376
  #. translators: accessibility text
10377
  #: bp-templates/bp-legacy/buddypress/members/single/groups/invites.php:21
10378
- #: bp-templates/bp-nouveau/includes/groups/functions.php:1223
10379
  msgid "Group invitations"
10380
  msgstr ""
10381
 
@@ -11411,7 +11411,7 @@ msgid "All Members"
11411
  msgstr ""
11412
 
11413
  #: bp-templates/bp-nouveau/includes/activity/functions.php:256
11414
- #: bp-templates/bp-nouveau/includes/groups/functions.php:531
11415
  msgid "My Groups"
11416
  msgstr ""
11417
 
@@ -11894,26 +11894,26 @@ msgid "You are not allowed to send invitations for this group."
11894
  msgstr ""
11895
 
11896
  #. translators: count of users affected
11897
- #: bp-templates/bp-nouveau/includes/groups/ajax.php:431
11898
  msgid "Invitation failed for %s user."
11899
  msgid_plural "Invitation failed for %s users."
11900
  msgstr[0] ""
11901
  msgstr[1] ""
11902
 
11903
- #: bp-templates/bp-nouveau/includes/groups/ajax.php:450
11904
  msgid "Invitations sent."
11905
  msgstr ""
11906
 
11907
- #: bp-templates/bp-nouveau/includes/groups/ajax.php:464
11908
- #: bp-templates/bp-nouveau/includes/groups/ajax.php:507
11909
  msgid "Group invitation could not be removed."
11910
  msgstr ""
11911
 
11912
- #: bp-templates/bp-nouveau/includes/groups/ajax.php:496
11913
  msgid "The member is already a member of the group."
11914
  msgstr ""
11915
 
11916
- #: bp-templates/bp-nouveau/includes/groups/ajax.php:516
11917
  msgid "There are no more pending invitations for the group."
11918
  msgstr ""
11919
 
@@ -11970,102 +11970,102 @@ msgctxt "Group invitations menu title"
11970
  msgid "Invite"
11971
  msgstr ""
11972
 
11973
- #: bp-templates/bp-nouveau/includes/groups/functions.php:428
11974
- #: bp-templates/bp-nouveau/includes/groups/functions.php:456
11975
  msgctxt "Group invitations main menu title"
11976
  msgid "Group Invites"
11977
  msgstr ""
11978
 
11979
- #: bp-templates/bp-nouveau/includes/groups/functions.php:486
11980
  msgid "Group invites preferences saved."
11981
  msgstr ""
11982
 
11983
- #: bp-templates/bp-nouveau/includes/groups/functions.php:515
11984
  msgid "All Groups"
11985
  msgstr ""
11986
 
11987
- #: bp-templates/bp-nouveau/includes/groups/functions.php:700
11988
  msgid "Group front page"
11989
  msgstr ""
11990
 
11991
- #: bp-templates/bp-nouveau/includes/groups/functions.php:703
11992
  msgid "Configure the default front page for groups."
11993
  msgstr ""
11994
 
11995
- #: bp-templates/bp-nouveau/includes/groups/functions.php:706
11996
  msgid "Group navigation"
11997
  msgstr ""
11998
 
11999
- #: bp-templates/bp-nouveau/includes/groups/functions.php:709
12000
  msgid "Customize the navigation menu for groups. See your changes by navigating to a group in the live-preview window."
12001
  msgstr ""
12002
 
12003
- #: bp-templates/bp-nouveau/includes/groups/functions.php:810
12004
  msgid "Enable custom front pages for groups."
12005
  msgstr ""
12006
 
12007
- #: bp-templates/bp-nouveau/includes/groups/functions.php:816
12008
  msgid "Enable widget region for group homepages. When enabled, the site admin can add widgets to group pages via the Widgets panel."
12009
  msgstr ""
12010
 
12011
- #: bp-templates/bp-nouveau/includes/groups/functions.php:822
12012
  msgid "Display the group description in the body of the group's front page."
12013
  msgstr ""
12014
 
12015
- #: bp-templates/bp-nouveau/includes/groups/functions.php:828
12016
  msgid "Display the group navigation vertically."
12017
  msgstr ""
12018
 
12019
- #: bp-templates/bp-nouveau/includes/groups/functions.php:834
12020
  msgid "Use tab styling for primary navigation."
12021
  msgstr ""
12022
 
12023
- #: bp-templates/bp-nouveau/includes/groups/functions.php:840
12024
  msgid "Use tab styling for secondary navigation."
12025
  msgstr ""
12026
 
12027
- #: bp-templates/bp-nouveau/includes/groups/functions.php:846
12028
  msgid "Use tab styling for the group creation process."
12029
  msgstr ""
12030
 
12031
- #: bp-templates/bp-nouveau/includes/groups/functions.php:853
12032
  msgid "Reorder the primary navigation for a group."
12033
  msgstr ""
12034
 
12035
- #: bp-templates/bp-nouveau/includes/groups/functions.php:859
12036
  msgctxt "Customizer control label"
12037
  msgid "Groups"
12038
  msgstr ""
12039
 
12040
- #: bp-templates/bp-nouveau/includes/groups/functions.php:866
12041
  msgid "Group > Members"
12042
  msgstr ""
12043
 
12044
- #: bp-templates/bp-nouveau/includes/groups/functions.php:873
12045
  msgid "Use column navigation for the Groups directory."
12046
  msgstr ""
12047
 
12048
- #: bp-templates/bp-nouveau/includes/groups/functions.php:879
12049
  msgid "Use tab styling for Groups directory navigation."
12050
  msgstr ""
12051
 
12052
- #: bp-templates/bp-nouveau/includes/groups/functions.php:1198
12053
  msgid "Pending Group membership requests"
12054
  msgstr ""
12055
 
12056
- #: bp-templates/bp-nouveau/includes/groups/functions.php:1203
12057
  msgid "Accepted Group membership requests"
12058
  msgstr ""
12059
 
12060
- #: bp-templates/bp-nouveau/includes/groups/functions.php:1208
12061
  msgid "Rejected Group membership requests"
12062
  msgstr ""
12063
 
12064
- #: bp-templates/bp-nouveau/includes/groups/functions.php:1213
12065
  msgid "Group Administrator promotions"
12066
  msgstr ""
12067
 
12068
- #: bp-templates/bp-nouveau/includes/groups/functions.php:1218
12069
  msgid "Group Moderator promotions"
12070
  msgstr ""
12071
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2020-09-14T19:14:34+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.4.0\n"
15
  "X-Domain: buddypress\n"
700
  #: bp-core/admin/bp-core-admin-tools.php:600
701
  #: bp-friends/bp-friends-functions.php:962
702
  #: bp-friends/bp-friends-notifications.php:256
703
+ #: bp-groups/bp-groups-notifications.php:1143
704
  #: bp-messages/bp-messages-notifications.php:268
705
  #: bp-settings/bp-settings-functions.php:135
706
  #: bp-templates/bp-legacy/buddypress/members/register.php:319
713
  #: bp-core/admin/bp-core-admin-tools.php:602
714
  #: bp-friends/bp-friends-functions.php:962
715
  #: bp-friends/bp-friends-notifications.php:257
716
+ #: bp-groups/bp-groups-notifications.php:1144
717
  #: bp-messages/bp-messages-notifications.php:269
718
  #: bp-settings/bp-settings-functions.php:136
719
  #: bp-templates/bp-legacy/buddypress/members/register.php:320
731
  #: bp-activity/bp-activity-notifications.php:433
732
  #: bp-friends/bp-friends-notifications.php:267
733
  #: bp-friends/bp-friends-notifications.php:279
734
+ #: bp-groups/bp-groups-notifications.php:1154
735
+ #: bp-groups/bp-groups-notifications.php:1166
736
+ #: bp-groups/bp-groups-notifications.php:1178
737
+ #: bp-groups/bp-groups-notifications.php:1190
738
+ #: bp-groups/bp-groups-notifications.php:1202
739
  #: bp-messages/bp-messages-notifications.php:279
740
  msgid "Yes, send email"
741
  msgstr ""
745
  #: bp-activity/bp-activity-notifications.php:437
746
  #: bp-friends/bp-friends-notifications.php:271
747
  #: bp-friends/bp-friends-notifications.php:283
748
+ #: bp-groups/bp-groups-notifications.php:1158
749
+ #: bp-groups/bp-groups-notifications.php:1170
750
+ #: bp-groups/bp-groups-notifications.php:1182
751
+ #: bp-groups/bp-groups-notifications.php:1194
752
+ #: bp-groups/bp-groups-notifications.php:1206
753
  #: bp-messages/bp-messages-notifications.php:283
754
  msgid "No, do not send email"
755
  msgstr ""
3600
 
3601
  #: bp-core/bp-core-template.php:3145
3602
  #: bp-groups/bp-groups-template.php:3467
3603
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:551
3604
  msgid "Create a Group"
3605
  msgstr ""
3606
 
5008
  msgstr ""
5009
 
5010
  #: bp-friends/classes/class-bp-rest-friends-endpoint.php:329
5011
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:495
5012
  msgid "You are not allowed to perform this action."
5013
  msgstr ""
5014
 
5809
  msgid "* Permalink changed from \"%1$s\" to \"%2$s\"."
5810
  msgstr ""
5811
 
5812
+ #: bp-groups/bp-groups-notifications.php:261
5813
  msgid "an administrator"
5814
  msgstr ""
5815
 
5816
+ #: bp-groups/bp-groups-notifications.php:264
5817
  msgid "a moderator"
5818
  msgstr ""
5819
 
5820
  #. translators: 1: number of group membership requests. 2: group name.
5821
+ #: bp-groups/bp-groups-notifications.php:405
5822
  msgid "%1$d new membership requests for the group \"%2$s\""
5823
  msgstr ""
5824
 
5825
  #. translators: %s: member name
5826
+ #: bp-groups/bp-groups-notifications.php:452
5827
  msgid "%s requests group membership"
5828
  msgstr ""
5829
 
5830
  #. translators: 1: number of accepted group membership requests. 2: group name.
5831
+ #: bp-groups/bp-groups-notifications.php:508
5832
  msgid "%1$d accepted group membership requests for the group \"%2$s\""
5833
  msgstr ""
5834
 
5835
  #. translators: %s: group name.
5836
+ #: bp-groups/bp-groups-notifications.php:548
5837
  msgid "Membership for group \"%s\" accepted"
5838
  msgstr ""
5839
 
5840
  #. translators: 1: number of accepted group membership requests. 2: group name.
5841
+ #: bp-groups/bp-groups-notifications.php:599
5842
  msgid "%1$d rejected group membership requests for the group \"%2$s\""
5843
  msgstr ""
5844
 
5845
  #. translators: %s: group name.
5846
+ #: bp-groups/bp-groups-notifications.php:639
5847
  msgid "Membership for group \"%s\" rejected"
5848
  msgstr ""
5849
 
5850
  #. translators: %d: number of groups the user has been promoted admin for
5851
+ #: bp-groups/bp-groups-notifications.php:689
5852
  msgid "You were promoted to an admin in %d groups"
5853
  msgstr ""
5854
 
5855
  #. translators: %s: group name.
5856
+ #: bp-groups/bp-groups-notifications.php:725
5857
  msgid "You were promoted to an admin in the group \"%s\""
5858
  msgstr ""
5859
 
5860
  #. translators: %d: number of groups the user has been promoted mod for
5861
+ #: bp-groups/bp-groups-notifications.php:773
5862
  msgid "You were promoted to a mod in %d groups"
5863
  msgstr ""
5864
 
5865
  #. translators: %s: group name.
5866
+ #: bp-groups/bp-groups-notifications.php:809
5867
  msgid "You were promoted to a mod in the group \"%s\""
5868
  msgstr ""
5869
 
5870
  #. translators: %d: number of group invites
5871
+ #: bp-groups/bp-groups-notifications.php:858
5872
  msgid "You have %d new group invitations"
5873
  msgstr ""
5874
 
5875
  #. translators: %s: group name.
5876
+ #: bp-groups/bp-groups-notifications.php:893
5877
  msgid "You have an invitation to the group: %s"
5878
  msgstr ""
5879
 
5880
+ #: bp-groups/bp-groups-notifications.php:1142
5881
  msgctxt "Group settings on notification settings page"
5882
  msgid "Groups"
5883
  msgstr ""
5884
 
5885
+ #: bp-groups/bp-groups-notifications.php:1151
5886
  msgctxt "group settings on notification settings page"
5887
  msgid "A member invites you to join a group"
5888
  msgstr ""
5889
 
5890
+ #: bp-groups/bp-groups-notifications.php:1163
5891
  msgctxt "group settings on notification settings page"
5892
  msgid "Group information is updated"
5893
  msgstr ""
5894
 
5895
+ #: bp-groups/bp-groups-notifications.php:1175
5896
  msgctxt "group settings on notification settings page"
5897
  msgid "You are promoted to a group administrator or moderator"
5898
  msgstr ""
5899
 
5900
+ #: bp-groups/bp-groups-notifications.php:1187
5901
  msgctxt "group settings on notification settings page"
5902
  msgid "A member requests to join a private group for which you are an admin"
5903
  msgstr ""
5904
 
5905
+ #: bp-groups/bp-groups-notifications.php:1199
5906
  msgctxt "group settings on notification settings page"
5907
  msgid "Your request to join a group has been approved or denied"
5908
  msgstr ""
6104
  #: bp-templates/bp-legacy/buddypress/members/single/friends.php:24
6105
  #: bp-templates/bp-legacy/buddypress/members/single/groups.php:25
6106
  #: bp-templates/bp-nouveau/includes/blogs/functions.php:108
6107
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:609
6108
  #: bp-templates/bp-nouveau/includes/members/functions.php:102
6109
  #: bp-templates/bp-nouveau/includes/members/functions.php:120
6110
  msgid "Alphabetical"
7131
  msgid "Group membership request rejected"
7132
  msgstr ""
7133
 
7134
+ #: bp-groups/screens/single/request-membership.php:30
7135
  msgid "Group invite accepted"
7136
  msgstr ""
7137
 
7138
+ #: bp-groups/screens/single/request-membership.php:32
7139
  msgid "There was an error accepting the group invitation. Please try again."
7140
  msgstr ""
7141
 
7142
+ #: bp-groups/screens/single/request-membership.php:58
7143
  msgid "There was an error sending your group membership request. Please try again."
7144
  msgstr ""
7145
 
7146
+ #: bp-groups/screens/single/request-membership.php:60
7147
  msgid "Your membership request was sent to the group administrator successfully. You will be notified when the group administrator responds to your request."
7148
  msgstr ""
7149
 
9785
  #: bp-templates/bp-legacy/buddypress/members/single/friends.php:22
9786
  #: bp-templates/bp-legacy/buddypress/members/single/groups.php:22
9787
  #: bp-templates/bp-nouveau/includes/blogs/functions.php:106
9788
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:606
9789
  #: bp-templates/bp-nouveau/includes/members/functions.php:97
9790
  msgid "Last Active"
9791
  msgstr ""
10027
 
10028
  #: bp-templates/bp-legacy/buddypress/groups/index.php:111
10029
  #: bp-templates/bp-legacy/buddypress/members/single/groups.php:23
10030
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:607
10031
  msgid "Most Members"
10032
  msgstr ""
10033
 
10034
  #: bp-templates/bp-legacy/buddypress/groups/index.php:112
10035
  #: bp-templates/bp-legacy/buddypress/members/single/groups.php:24
10036
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:608
10037
  msgid "Newly Created"
10038
  msgstr ""
10039
 
10375
 
10376
  #. translators: accessibility text
10377
  #: bp-templates/bp-legacy/buddypress/members/single/groups/invites.php:21
10378
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:1230
10379
  msgid "Group invitations"
10380
  msgstr ""
10381
 
11411
  msgstr ""
11412
 
11413
  #: bp-templates/bp-nouveau/includes/activity/functions.php:256
11414
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:538
11415
  msgid "My Groups"
11416
  msgstr ""
11417
 
11894
  msgstr ""
11895
 
11896
  #. translators: count of users affected
11897
+ #: bp-templates/bp-nouveau/includes/groups/ajax.php:419
11898
  msgid "Invitation failed for %s user."
11899
  msgid_plural "Invitation failed for %s users."
11900
  msgstr[0] ""
11901
  msgstr[1] ""
11902
 
11903
+ #: bp-templates/bp-nouveau/includes/groups/ajax.php:438
11904
  msgid "Invitations sent."
11905
  msgstr ""
11906
 
11907
+ #: bp-templates/bp-nouveau/includes/groups/ajax.php:452
11908
+ #: bp-templates/bp-nouveau/includes/groups/ajax.php:495
11909
  msgid "Group invitation could not be removed."
11910
  msgstr ""
11911
 
11912
+ #: bp-templates/bp-nouveau/includes/groups/ajax.php:484
11913
  msgid "The member is already a member of the group."
11914
  msgstr ""
11915
 
11916
+ #: bp-templates/bp-nouveau/includes/groups/ajax.php:504
11917
  msgid "There are no more pending invitations for the group."
11918
  msgstr ""
11919
 
11970
  msgid "Invite"
11971
  msgstr ""
11972
 
11973
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:435
11974
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:463
11975
  msgctxt "Group invitations main menu title"
11976
  msgid "Group Invites"
11977
  msgstr ""
11978
 
11979
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:493
11980
  msgid "Group invites preferences saved."
11981
  msgstr ""
11982
 
11983
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:522
11984
  msgid "All Groups"
11985
  msgstr ""
11986
 
11987
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:707
11988
  msgid "Group front page"
11989
  msgstr ""
11990
 
11991
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:710
11992
  msgid "Configure the default front page for groups."
11993
  msgstr ""
11994
 
11995
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:713
11996
  msgid "Group navigation"
11997
  msgstr ""
11998
 
11999
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:716
12000
  msgid "Customize the navigation menu for groups. See your changes by navigating to a group in the live-preview window."
12001
  msgstr ""
12002
 
12003
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:817
12004
  msgid "Enable custom front pages for groups."
12005
  msgstr ""
12006
 
12007
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:823
12008
  msgid "Enable widget region for group homepages. When enabled, the site admin can add widgets to group pages via the Widgets panel."
12009
  msgstr ""
12010
 
12011
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:829
12012
  msgid "Display the group description in the body of the group's front page."
12013
  msgstr ""
12014
 
12015
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:835
12016
  msgid "Display the group navigation vertically."
12017
  msgstr ""
12018
 
12019
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:841
12020
  msgid "Use tab styling for primary navigation."
12021
  msgstr ""
12022
 
12023
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:847
12024
  msgid "Use tab styling for secondary navigation."
12025
  msgstr ""
12026
 
12027
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:853
12028
  msgid "Use tab styling for the group creation process."
12029
  msgstr ""
12030
 
12031
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:860
12032
  msgid "Reorder the primary navigation for a group."
12033
  msgstr ""
12034
 
12035
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:866
12036
  msgctxt "Customizer control label"
12037
  msgid "Groups"
12038
  msgstr ""
12039
 
12040
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:873
12041
  msgid "Group > Members"
12042
  msgstr ""
12043
 
12044
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:880
12045
  msgid "Use column navigation for the Groups directory."
12046
  msgstr ""
12047
 
12048
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:886
12049
  msgid "Use tab styling for Groups directory navigation."
12050
  msgstr ""
12051
 
12052
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:1205
12053
  msgid "Pending Group membership requests"
12054
  msgstr ""
12055
 
12056
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:1210
12057
  msgid "Accepted Group membership requests"
12058
  msgstr ""
12059
 
12060
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:1215
12061
  msgid "Rejected Group membership requests"
12062
  msgstr ""
12063
 
12064
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:1220
12065
  msgid "Group Administrator promotions"
12066
  msgstr ""
12067
 
12068
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:1225
12069
  msgid "Group Moderator promotions"
12070
  msgstr ""
12071
 
class-buddypress.php CHANGED
@@ -303,7 +303,7 @@ class BuddyPress {
303
 
304
  /** Versions **********************************************************/
305
 
306
- $this->version = '6.2.0';
307
  $this->db_version = 12385;
308
 
309
  /** Loading ***********************************************************/
303
 
304
  /** Versions **********************************************************/
305
 
306
+ $this->version = '6.3.0';
307
  $this->db_version = 12385;
308
 
309
  /** Loading ***********************************************************/
readme.txt CHANGED
@@ -1,12 +1,12 @@
1
  === BuddyPress ===
2
  Contributors: johnjamesjacoby, DJPaul, boonebgorges, r-a-y, imath, mercime, tw2113, dcavins, hnla, karmatosed, slaFFik, dimensionmedia, henrywright, netweb, offereins, espellcaste, modemlooper, danbp, Venutius, apeatling, shanebp
3
  Tags: user profiles, activity streams, messaging, friends, user groups, notifications, community, social networking, intranet
4
- Requires at least: 4.8
5
- Tested up to: 5.5.0
6
- Requires PHP: 5.6
7
- Stable tag: 6.2.0
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
 
 
 
 
10
 
11
  BuddyPress helps site builders & developers add community features to their websites, with user profiles, activity streams, and more!
12
 
@@ -125,6 +125,9 @@ Try <a href="https://wordpress.org/plugins/bbpress/">bbPress</a>. It integrates
125
 
126
  == Upgrade Notice ==
127
 
 
 
 
128
  = 6.2.0 =
129
  See: https://codex.buddypress.org/releases/version-6-2-0/
130
 
@@ -166,6 +169,9 @@ See: https://codex.buddypress.org/releases/version-4-0-0/
166
 
167
  == Changelog ==
168
 
 
 
 
169
  = 6.2.0 =
170
  See: https://codex.buddypress.org/releases/version-6-2-0/
171
 
1
  === BuddyPress ===
2
  Contributors: johnjamesjacoby, DJPaul, boonebgorges, r-a-y, imath, mercime, tw2113, dcavins, hnla, karmatosed, slaFFik, dimensionmedia, henrywright, netweb, offereins, espellcaste, modemlooper, danbp, Venutius, apeatling, shanebp
3
  Tags: user profiles, activity streams, messaging, friends, user groups, notifications, community, social networking, intranet
 
 
 
 
4
  License: GPLv2 or later
5
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
6
+ Requires at least: 4.8
7
+ Requires PHP: 5.6
8
+ Tested up to: 5.5.1
9
+ Stable tag: 6.3.0
10
 
11
  BuddyPress helps site builders & developers add community features to their websites, with user profiles, activity streams, and more!
12
 
125
 
126
  == Upgrade Notice ==
127
 
128
+ = 6.3.0 =
129
+ See: https://codex.buddypress.org/releases/version-6-3-0/
130
+
131
  = 6.2.0 =
132
  See: https://codex.buddypress.org/releases/version-6-2-0/
133
 
169
 
170
  == Changelog ==
171
 
172
+ = 6.3.0 =
173
+ See: https://codex.buddypress.org/releases/version-6-3-0/
174
+
175
  = 6.2.0 =
176
  See: https://codex.buddypress.org/releases/version-6-2-0/
177