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

@ -104,7 +104,7 @@ class Tombstone {
return self::check_array( $data );
}
if ( in_array( (int) $response->get_error_code(), self::$codes, true ) ) {
if ( \in_array( (int) $response->get_error_code(), self::$codes, true ) ) {
return true;
}
@ -162,7 +162,7 @@ class Tombstone {
}
$data = $wp_error->get_error_data();
if ( isset( $data['status'] ) && in_array( (int) $data['status'], self::$codes, true ) ) {
if ( isset( $data['status'] ) && \in_array( (int) $data['status'], self::$codes, true ) ) {
return true;
}