BuddyPress - Version 2.6.1.1

Version Description

See: https://codex.buddypress.org/releases/version-2-6-1-1/

Download this release

Release Info

Developer dcavins
Plugin Icon 128x128 BuddyPress
Version 2.6.1.1
Comparing to
See all releases

Code changes from version 2.6.1 to 2.6.1.1

Files changed (3) hide show
  1. bp-loader.php +11 -5
  2. buddypress.pot +3 -3
  3. readme.txt +7 -1
bp-loader.php CHANGED
@@ -15,7 +15,7 @@
15
  * Description: BuddyPress helps you build any type of community website using WordPress, with member profiles, activity streams, user groups, messaging, and more.
16
  * Author: The BuddyPress Community
17
  * Author URI: https://buddypress.org/
18
- * Version: 2.6.1
19
  * Text Domain: buddypress
20
  * Domain Path: /bp-languages/
21
  * License: GPLv2 or later (license.txt)
@@ -330,7 +330,7 @@ class BuddyPress {
330
 
331
  /** Versions **********************************************************/
332
 
333
- $this->version = '2.6.1';
334
  $this->db_version = 10469;
335
 
336
  /** Loading ***********************************************************/
@@ -617,9 +617,15 @@ class BuddyPress {
617
  return;
618
  }
619
 
620
- // Sanity check 2 - Check if component is active before loading class.
621
- // Skip if PHPUnit is running.
622
- if ( 'core' !== $component && false === bp_is_active( $component ) && false === function_exists( 'tests_add_filter' ) ) {
 
 
 
 
 
 
623
  return;
624
  }
625
 
15
  * Description: BuddyPress helps you build any type of community website using WordPress, with member profiles, activity streams, user groups, messaging, and more.
16
  * Author: The BuddyPress Community
17
  * Author URI: https://buddypress.org/
18
+ * Version: 2.6.1.1
19
  * Text Domain: buddypress
20
  * Domain Path: /bp-languages/
21
  * License: GPLv2 or later (license.txt)
330
 
331
  /** Versions **********************************************************/
332
 
333
+ $this->version = '2.6.1.1';
334
  $this->db_version = 10469;
335
 
336
  /** Loading ***********************************************************/
617
  return;
618
  }
619
 
620
+ /*
621
+ * Sanity check 2 - Check if component is active before loading class.
622
+ * Skip if PHPUnit is running, or BuddyPress is installing for the first time.
623
+ */
624
+ if (
625
+ ! in_array( $component, array( 'core', 'members' ), true ) &&
626
+ ! bp_is_active( $component ) &&
627
+ ! function_exists( 'tests_add_filter' )
628
+ ) {
629
  return;
630
  }
631
 
buddypress.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the GPLv2 or later (license.txt).
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: BuddyPress 2.6.1\n"
6
  "Report-Msgid-Bugs-To: https://buddypress.trac.wordpress.org\n"
7
- "POT-Creation-Date: 2016-06-30 00:08:17+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -5077,7 +5077,7 @@ msgstr ""
5077
  msgid "Cheatin’ huh?"
5078
  msgstr ""
5079
 
5080
- #: bp-loader.php:746
5081
  msgid "BuddyPress Default"
5082
  msgstr ""
5083
 
2
  # This file is distributed under the GPLv2 or later (license.txt).
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: BuddyPress 2.6.1.1\n"
6
  "Report-Msgid-Bugs-To: https://buddypress.trac.wordpress.org\n"
7
+ "POT-Creation-Date: 2016-06-30 15:50:32+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
5077
  msgid "Cheatin’ huh?"
5078
  msgstr ""
5079
 
5080
+ #: bp-loader.php:752
5081
  msgid "BuddyPress Default"
5082
  msgstr ""
5083
 
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: johnjamesjacoby, DJPaul, boonebgorges, r-a-y, imath, mercime, tw21
3
  Tags: social networking, activity, profiles, messaging, friends, groups, forums, notifications, settings, social, community, networks, networking
4
  Requires at least: 4.1
5
  Tested up to: 4.5.3
6
- Stable tag: 2.6.1
7
  License: GPLv2 or later
8
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -118,6 +118,9 @@ Please consider helping translate BuddyPress at our <a href="https://translate.w
118
 
119
  == Upgrade Notice ==
120
 
 
 
 
121
  = 2.6.1 =
122
  See: https://codex.buddypress.org/releases/version-2-6-1/
123
 
@@ -126,6 +129,9 @@ See: https://codex.buddypress.org/releases/version-2-6-0/
126
 
127
  == Changelog ==
128
 
 
 
 
129
  = 2.6.1 =
130
  See: https://codex.buddypress.org/releases/version-2-6-1/
131
 
3
  Tags: social networking, activity, profiles, messaging, friends, groups, forums, notifications, settings, social, community, networks, networking
4
  Requires at least: 4.1
5
  Tested up to: 4.5.3
6
+ Stable tag: 2.6.1.1
7
  License: GPLv2 or later
8
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
9
 
118
 
119
  == Upgrade Notice ==
120
 
121
+ = 2.6.1.1 =
122
+ See: https://codex.buddypress.org/releases/version-2-6-1-1/
123
+
124
  = 2.6.1 =
125
  See: https://codex.buddypress.org/releases/version-2-6-1/
126
 
129
 
130
  == Changelog ==
131
 
132
+ = 2.6.1.1 =
133
+ See: https://codex.buddypress.org/releases/version-2-6-1-1/
134
+
135
  = 2.6.1 =
136
  See: https://codex.buddypress.org/releases/version-2-6-1/
137