IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
diff --git a/src/wp-admin/authorize-application.php b/src/wp-admin/authorize-application.php
a
|
b
|
|
200 | 200 | |
201 | 201 | <?php |
202 | 202 | /** |
203 | | * Fires in the Authorize Application Password new password section. |
| 203 | * Fires in the Authorize Application Password new password section in no-JS version. |
204 | 204 | * |
205 | 205 | * @since 5.6.0 |
206 | 206 | * |
… |
… |
|
208 | 208 | * @param array $request The array of request data. All arguments are optional and may be empty. |
209 | 209 | * @param WP_User $user The user authorizing the application. |
210 | 210 | */ |
211 | | do_action( 'wp_authorize_application_password_form', $request, $user ); |
| 211 | do_action( 'wp_authorize_application_password_form_no_js', $request, $user ); |
212 | 212 | ?> |
213 | 213 | <?php else : ?> |
214 | 214 | <form action="<?php echo esc_url( admin_url( 'authorize-application.php' ) ); ?>" method="post" class="form-wrap"> |
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
diff --git a/src/js/_enqueues/admin/auth-app.js b/src/js/_enqueues/admin/auth-app.js
a
|
b
|
|
132 | 132 | * @param {string} errorThrown The error message associated with the response status code. |
133 | 133 | * @param {jqXHR} jqXHR The underlying jqXHR object that made the request. |
134 | 134 | */ |
135 | | wp.hooks.doAction( 'wp_application_passwords_approve_app_request_success', error, textStatus, jqXHR ); |
| 135 | wp.hooks.doAction( 'wp_application_passwords_approve_app_request_error', error, textStatus, jqXHR ); |
136 | 136 | } ); |
137 | 137 | } ); |
138 | 138 | |