PluginProbe
Friends / 4.3.2
Friends v4.3.2
4.3.2 4.3.1 4.3.0 4.2.2 4.2.1 4.2.0 4.1.0 2.7.4 2.7.5 2.7.6 2.7.7 2.7.8 2.7.9 2.8.0 2.8.1 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.8.7 2.8.8 2.8.9 2.9.0 2.9.1 All 88 releases
← All changes | friends.php +5 -2 4.3.14.3.2 View file →
@@ -1,9 +1,9 @@
1 1 <?php
2 2 /**
3 3 * Plugin name: Friends
4 4 * Plugin URI: https://github.com/akirk/friends
5 - * Version: 4.3.1
5 + * Version: 4.3.2
6 6 * Author: Alex Kirk
7 7 * Author URI: https://alex.kirk.at/
8 8 * Requires PHP: 7.4
9 9 *
@@ -25,9 +25,9 @@
25 25 defined( 'ABSPATH' ) || exit;
26 26 define( 'FRIENDS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
27 27 define( 'FRIENDS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
28 28 define( 'FRIENDS_PLUGIN_FILE', plugin_dir_path( __FILE__ ) . '/' . basename( __FILE__ ) );
29 -define( 'FRIENDS_VERSION', '4.3.1' );
29 +define( 'FRIENDS_VERSION', '4.3.2' );
30 30
31 31 require_once __DIR__ . '/libs/Mf2/Parser.php';
32 32
33 33 require_once __DIR__ . '/includes/class-user.php';
@@ -188,7 +188,10 @@
188 188 return Friends::check_url( $url );
189 189 }
190 190
191 191 // Integrations.
192 +
193 +require_once __DIR__ . '/integrations/class-blockroll.php';
194 +Blockroll::init();
192 195
193 196 require_once __DIR__ . '/integrations/class-enable-mastodon-apps.php';
194 197 Enable_Mastodon_Apps::init();