Changeset 59927
- Timestamp:
- 03/04/2025 02:17:18 PM (8 weeks ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-user.php
r59828 r59927 12 12 * 13 13 * @since 2.0.0 14 * @since 6.8.0 The `user_pass` property is now hashed using bcrypt instead of phpass. 14 * @since 6.8.0 The `user_pass` property is now hashed using bcrypt by default instead of phpass. 15 * Existing passwords may still be hashed using phpass. 15 16 * 16 17 * @property string $nickname -
trunk/src/wp-includes/update.php
r59926 r59927 155 155 * 156 156 * @since 4.9.0 157 * @since 6.1.0 Added `$extensions`, `$platform_flags`, and `$image_support` to the `$query` parameter. 157 158 * 158 159 * @param array $query { … … 168 169 * @type int $multisite_enabled Whether this WordPress installation uses Multisite. 169 170 * @type int $initial_db_version Database version of WordPress at time of installation. 171 * @type array $extensions List of PHP extensions and their versions. 172 * @type array $platform_flags List containing the operating system name and bit support. 173 * @type array $image_support List of image formats supported by GD and Imagick. 170 174 * } 171 175 */ -
trunk/src/wp-includes/user.php
r59900 r59927 2457 2457 * @since 4.9.0 2458 2458 * @since 5.8.0 The `$userdata` parameter was added. 2459 * @since 6.8.0 The user's password is now hashed using bcrypt instead of phpass.2459 * @since 6.8.0 The user's password is now hashed using bcrypt by default instead of phpass. 2460 2460 * 2461 2461 * @param array $data {
Note: See TracChangeset
for help on using the changeset viewer.