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
{{ message }}
This repository was archived by the owner on Sep 2, 2021. It is now read-only.
Wordpress stores the url encoded post_name on DB if the post_name has non-ascii characters.
Mlp_Advanced_Translator_View show_name function lacks the urldecode on the $value so it will display the encoded characters on the input field.
I added this line:
$value = urldecode($value);
right after the line 104 of Mlp_Advanced_Translator_View.php:
$value = esc_attr( $value );
to solve the issue.
Maybe you can add it to the master branch in the next update?
Thanks!
Luis
The text was updated successfully, but these errors were encountered:
Wordpress stores the url encoded post_name on DB if the post_name has non-ascii characters.
Mlp_Advanced_Translator_View show_name function lacks the urldecode on the $value so it will display the encoded characters on the input field.
I added this line:
$value = urldecode($value);
right after the line 104 of Mlp_Advanced_Translator_View.php:
$value = esc_attr( $value );
to solve the issue.
Maybe you can add it to the master branch in the next update?
Thanks!
Luis
The text was updated successfully, but these errors were encountered: