From 68c134d9749655afe8fe09bc21fa6873a56e7524 Mon Sep 17 00:00:00 2001 From: pattonwebz Date: Wed, 30 Oct 2024 01:05:27 +0000 Subject: [PATCH] Add help ID to fields for comment and search form labels fix --- includes/classes/Fixes/Fix/CommentSearchLabelFix.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/classes/Fixes/Fix/CommentSearchLabelFix.php b/includes/classes/Fixes/Fix/CommentSearchLabelFix.php index 84cee325..e456a14d 100644 --- a/includes/classes/Fixes/Fix/CommentSearchLabelFix.php +++ b/includes/classes/Fixes/Fix/CommentSearchLabelFix.php @@ -85,6 +85,7 @@ public function get_fields_array( array $fields = [] ): array { 'section' => 'comment_search_label', 'fix_slug' => $this->get_slug(), 'group_name' => $this->get_nicename(), + 'help_id' => 8497, ]; $fields['edac_fix_search_label'] = [ @@ -94,6 +95,7 @@ public function get_fields_array( array $fields = [] ): array { 'description' => esc_html__( 'Adds a missing label to the WordPress search form.', 'accessibility-checker' ), 'section' => 'comment_search_label', 'fix_slug' => $this->get_slug(), + 'help_id' => 8497, ]; return $fields;