Skip to content

Commit 49412bf

Browse files
committed
HTML escape fix
1 parent 9c01429 commit 49412bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/pdf-ninja.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public function register_settings_fields( $settings_fields )
103103
Pdf_Forms_For_WPForms::render( "pdf-ninja-settings",
104104
array(
105105
'request-new-key-heading' => esc_html__( "Request new key from API", 'pdf-forms-for-wpforms' ),
106-
'admin-email' => $this->get_admin_email(),
106+
'admin-email' => esc_html( $this->get_admin_email() ),
107107
'admin-email-label' => esc_html__( "Administrator's Email Address", 'pdf-forms-for-wpforms' ),
108108
'get-new-key-label' => esc_html__( "Get new key", 'pdf-forms-for-wpforms' ),
109109
)

0 commit comments

Comments
 (0)