You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a username contains a dot (e.g. "my.name") its impossible to save settings for this user.
Cause:
The HTML-Code is run through the renderer which converts "my.name" to "my_name" for the input-hidden-field.
After submitting the form the code checks for the unrendered username.
if (!$disabled && $_POST["id_" . $post_name]) {
if ($_POST[$post_chk]) {
My Solution for the moment: adding 2 lines before the POST is checked,
I struggled the same issue all day long, and confirmed the solution was work.
I tried the plugin with Hogfather and it worked fine (without this issue).
If a username contains a dot (e.g. "my.name") its impossible to save settings for this user.
Cause:
The HTML-Code is run through the renderer which converts "my.name" to "my_name" for the input-hidden-field.
After submitting the form the code checks for the unrendered username.
My Solution for the moment: adding 2 lines before the POST is checked,
The text was updated successfully, but these errors were encountered: