mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-07-14 20:26:49 +09:00
Fix extra slashes in form edit fields when invalid input fields occur
This commit is contained in:
+1
-1
@@ -439,7 +439,7 @@ class UM_Fields {
|
||||
|
||||
if ( strstr( $key, 'user_pass' ) && $this->set_mode != 'password' ) return '';
|
||||
|
||||
return $ultimatemember->form->post_form[ $key ];
|
||||
return stripslashes_deep( $ultimatemember->form->post_form[ $key ] );
|
||||
|
||||
} else if ( um_user( $key ) && $this->editing == true ) {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user