File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed
Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
2525add_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
You can’t perform that action at this time.
0 commit comments