PluginProbe
ActivityPub / 9.2.1
ActivityPub v9.2.1
9.3.1 9.3.0 9.2.2 9.2.1 9.2.0 9.1.0 9.0.2 9.0.1 9.0.0 8.3.0 8.2.1 8.2.0 8.1.1 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.2.0 1.3.0 2.0.0 2.0.1 2.1.0 2.1.1 All 160 releases
← All changes | includes/class-handler.php +3 -2 8.2.19.2.1 View file →
@@ -27,8 +27,9 @@
27 27 Handler\Announce::init();
28 28 Handler\Collection_Sync::init();
29 29 Handler\Create::init();
30 30 Handler\Delete::init();
31 + Handler\Feature_Request::init();
31 32 Handler\Follow::init();
32 33 Handler\Like::init();
33 34 Handler\Move::init();
34 35 Handler\Quote_Request::init();
@@ -40,9 +41,9 @@
40 41 * Register additional handlers.
41 42 *
42 43 * @since 1.3.0
43 44 */
44 - do_action( 'activitypub_register_handlers' );
45 + \do_action( 'activitypub_register_handlers' );
45 46 }
46 47
47 48 /**
48 49 * Register outbox handlers.
@@ -64,7 +65,7 @@
64 65 * Register additional outbox handlers.
65 66 *
66 67 * @since 8.1.0
67 68 */
68 - do_action( 'activitypub_register_outbox_handlers' );
69 + \do_action( 'activitypub_register_outbox_handlers' );
69 70 }
70 71 }