updated plugin ActivityPub version 9.1.0

This commit is contained in:
2026-07-28 15:03:10 +00:00
committed by Gitium
parent bf428f0e45
commit ff806e1811
217 changed files with 6098 additions and 3025 deletions

View File

@ -42,7 +42,7 @@ class Outbox_Command extends \WP_CLI_Command {
*/
public function undo( $args, $assoc_args ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
$outbox_item_id = $args[0];
if ( ! is_numeric( $outbox_item_id ) ) {
if ( ! \is_numeric( $outbox_item_id ) ) {
$outbox_item_id = \url_to_postid( $outbox_item_id );
}
@ -84,7 +84,7 @@ class Outbox_Command extends \WP_CLI_Command {
*/
public function reschedule( $args, $assoc_args ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
$outbox_item_id = $args[0];
if ( ! is_numeric( $outbox_item_id ) ) {
if ( ! \is_numeric( $outbox_item_id ) ) {
$outbox_item_id = \url_to_postid( $outbox_item_id );
}