When attempting to search for users in the "Change Entry Creator" select field, the AJAX request always produces an empty response, resulting in this message: "The results could not be loaded":
Steps to Reproduce:
Edit any entry in the Gravity Forms interface.
Attempt to search for a user in the "Change Entry Creator" select field.
I think this issue was introduced in commit 24f875b.
The wp_kses function is stripping out the hidden <input> field that contains the nonce used for the AJAX request.
As a result, the nonce verification fails, causing the request to die into an empty response.
When attempting to search for users in the "Change Entry Creator" select field, the AJAX request always produces an empty response, resulting in this message: "The results could not be loaded":
Steps to Reproduce:
I think this issue was introduced in commit 24f875b.
The
wp_kses
function is stripping out the hidden<input>
field that contains the nonce used for the AJAX request.As a result, the nonce verification fails, causing the request to die into an empty response.