From d0636061b74f8a6146b77ff8c74ea78384490e68 Mon Sep 17 00:00:00 2001 From: Dion Hulse Date: Thu, 19 Dec 2024 15:59:32 +1000 Subject: [PATCH] Add a needless useless url escape for trusted data to satisfy the linter. --- public_html/wp-content/plugins/wc-post-types/wc-post-types.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public_html/wp-content/plugins/wc-post-types/wc-post-types.php b/public_html/wp-content/plugins/wc-post-types/wc-post-types.php index a4ac5b2ab..800d4dc3d 100644 --- a/public_html/wp-content/plugins/wc-post-types/wc-post-types.php +++ b/public_html/wp-content/plugins/wc-post-types/wc-post-types.php @@ -1918,7 +1918,7 @@ public function manage_post_types_columns_output( $column, $post_id ) { if ( $wporg_user ) { printf( '%s', - 'https://profiles.wordpress.org/' . $wporg_user->user_nicename . '/', + esc_url( 'https://profiles.wordpress.org/' . $wporg_user->user_nicename . '/' ), esc_html( $wporg_user->user_login ) ); }