Skip to content

Commit 3f4170d

Browse files
authored
Merge pull request #19 from Automattic/release/1.0.5
2 parents d8a05a4 + 3d73bfc commit 3f4170d

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.0.5] - 2025-07-07
9+
10+
### Fixed
11+
12+
- Add `DOING_AJAX` check for `A8C_Files` initialization by @GaryJones in <https://github.com/Automattic/BuddyPress-VIP-Go/pull/18>
13+
814
## [1.0.4] - 2025-06-24
915

1016
### Fixed
@@ -50,6 +56,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5056

5157
- Initial release of BuddyPress for VIP Go
5258

59+
[1.0.5]: https://github.com/automattic/buddypress-vip-go/compare/1.0.4...1.0.5
5360
[1.0.4]: https://github.com/automattic/buddypress-vip-go/compare/1.0.3...1.0.4
5461
[1.0.3]: https://github.com/automattic/buddypress-vip-go/compare/1.0.2...1.0.3
5562
[1.0.2]: https://github.com/automattic/buddypress-vip-go/compare/1.0.1...1.0.2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
**Tags:** BuddyPress, BuddyBoss, WordPress VIP
55
**Requires at least:** 4.4.2
66
**Tested up to:** 6.8
7-
**Stable tag:** 1.0.4
7+
**Stable tag:** 1.0.5
88
**License:** GPLv2 or later
99
**License URI:** https://www.gnu.org/licenses/gpl-2.0.html
1010

buddypress-vip-go.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* @wordpress-plugin
1111
* Plugin Name: BuddyPress VIP Go
1212
* Description: Makes BuddyPress' media work with WordPress VIP's hosting.
13-
* Version: 1.0.4
13+
* Version: 1.0.5
1414
* Requires at least: 4.4.2
1515
* Requires PHP: 8.2
1616
* Author: Human Made, WordPress VIP
@@ -25,7 +25,7 @@
2525
add_action(
2626
'bp_loaded',
2727
function () {
28-
if ( ! class_exists( 'A8C_Files' ) || ! defined( 'FILES_CLIENT_SITE_ID' ) || ! defined( 'FILES_ACCESS_TOKEN' ) ) {
28+
if ( ! defined( 'DOING_AJAX' ) || ! class_exists( 'A8C_Files' ) || ! defined( 'FILES_CLIENT_SITE_ID' ) || ! defined( 'FILES_ACCESS_TOKEN' ) ) {
2929
return;
3030
}
3131

0 commit comments

Comments
 (0)