code cleanup

This commit is contained in:
Django Doucet 2022-10-05 14:50:58 -06:00
parent 2d0e962263
commit ecbe724b82
2 changed files with 3 additions and 3 deletions

View file

@ -49,7 +49,7 @@ class Activity_Dispatcher {
* Send "announce" activities.
*
* @param str $activitypub_url (ActivityPub object ID)
* @param absint $user_id
* @param absint $user_id
*/
public static function send_announce_activity( $activitypub_url, $user_id ) {
// get latest version of post

View file

@ -109,7 +109,7 @@ class Migrate_List extends \WP_List_Table {
\rawurlencode( $item['migrate'] ),
$delete_announce_nonce,
__( 'Delete the federated post, and re-share the original post', 'activitypub' ),
__( 'Delete & Re-share original', 'activitypub' ),
__( 'Delete & Re-share original', 'activitypub' )
),
'delete' => sprintf(
'<a href="?page=%s&action=%s&post_author=%s&post_url=%s&_wpnonce=%s" title="%s">%s</a>',
@ -119,7 +119,7 @@ class Migrate_List extends \WP_List_Table {
\rawurlencode( $item['migrate'] ),
$delete_nonce,
__( 'Delete the federated post', 'activitypub' ),
__( 'Delete', 'activitypub' ),
__( 'Delete', 'activitypub' )
),
);
return sprintf( '%1$s %2$s', $item['title'], $this->row_actions( $actions, true ) );