Changes between Version 1 and Version 2 of Ticket #17018, comment 2
- Timestamp:
- 04/02/2011 11:26:57 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #17018, comment 2
v1 v2 1 1 Cause of the error is that the Password is to be expected to be pre-processed - the process to add is to add slashes. 2 2 3 $_POST is being addslashes()'ed in wp_magic_quotes() / wp-load.php of every request - that's both the process of creating a new user (as of logging in).3 $_POST is being addslashes()'ed in wp_magic_quotes() / wp-load.php of every request - that's for both important processes, the process of creating the new user, and for logging in with the new user. 4 4 5 5 The slashed password is used as source to create the password hash when addin a new user.