Skip to content

Commit

Permalink
Merge branch 'release'
Browse files Browse the repository at this point in the history
  • Loading branch information
mehedi-bb committed Aug 8, 2024
2 parents 5041cc1 + 63316fe commit 8ba67cd
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bp-loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: The BuddyBoss Platform adds community features to WordPress. Member Profiles, Activity Feeds, Direct Messaging, Notifications, and more!
* Author: BuddyBoss
* Author URI: https://buddyboss.com/
* Version: 2.6.70
* Version: 2.6.71
* Text Domain: buddyboss
* Domain Path: /bp-languages/
* License: GPLv2 or later (license.txt)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@
},
"license": "GPL-2.0-or-later",
"version": "3.1.0",
"BBVersion": "2.6.70"
"BBVersion": "2.6.71"
}
2 changes: 1 addition & 1 deletion src/bp-activity/classes/class-bp-activity-activity.php
Original file line number Diff line number Diff line change
Expand Up @@ -1790,7 +1790,7 @@ public static function get_activity_comments( $activity_id, $left, $right, $spam
) ",
$args['last_comment_id'],
$args['last_comment_id'],
date_i18n( 'Y-m-d H:i:s', $args['last_comment_timestamp'] )
date_i18n( 'Y-m-d H:i:s', strtotime( $args['last_comment_timestamp'] ) )
);
}

Expand Down
4 changes: 2 additions & 2 deletions src/bp-loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: The BuddyBoss Platform adds community features to WordPress. Member Profiles, Activity Feeds, Direct Messaging, Notifications, and more!
* Author: BuddyBoss
* Author URI: https://buddyboss.com/
* Version: 2.6.70
* Version: 2.6.71
* Text Domain: buddyboss
* Domain Path: /languages/
* License: GPLv2 or later (license.txt)
Expand All @@ -24,7 +24,7 @@
}

if ( ! defined( 'BP_PLATFORM_VERSION' ) ) {
define( 'BP_PLATFORM_VERSION', '2.6.70' );
define( 'BP_PLATFORM_VERSION', '2.6.71' );
}

if ( ! defined( 'BP_PLATFORM_API' ) ) {
Expand Down
4 changes: 2 additions & 2 deletions src/languages/buddyboss.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
# This file is distributed under the GPLv2 or later (license.txt).
msgid ""
msgstr ""
"Project-Id-Version: BuddyBoss Platform 2.6.70\n"
"Project-Id-Version: BuddyBoss Platform 2.6.71\n"
"Report-Msgid-Bugs-To: https://www.buddyboss.com/contact/\n"
"POT-Creation-Date: 2024-08-06 09:45:20+00:00\n"
"POT-Creation-Date: 2024-08-08 13:21:12+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
Expand Down
5 changes: 4 additions & 1 deletion src/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: buddyboss
Requires at least: 4.9.1
Tested up to: 6.6.1
Requires PHP: 5.6.20
Stable tag: 2.6.70
Stable tag: 2.6.71
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -57,6 +57,9 @@ Furthermore, BuddyBoss Platform can be activated and operate in just about any s

== Changelog ==

= 2.6.71 =
* Bug: Activity - When viewing a comment with many replies that paginate on scroll then the replies where starting to show duplicates of earlier replies

= 2.6.70 =
* Bug: Activity - Removed moderator access to be able to delete organizer posts
* Bug: Activity - When saving a draft post that has an emoji in would show a Wordpress link preview to Wordpress
Expand Down

0 comments on commit 8ba67cd

Please sign in to comment.