Changeset 45568
- Timestamp:
- 06/27/2019 12:47:41 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pluggable.php
r45565 r45568 2385 2385 * 2386 2386 * @since 3.0.0 2387 * 2388 * @param string $password The generated password. 2389 */ 2390 return apply_filters( 'random_password', $password ); 2387 * @since 5.3.0 Added the `$length`, `$special_chars`, and `$extra_special_chars` parameters. 2388 * 2389 * @param string $password The generated password. 2390 * @param int $length The length of password to generate. 2391 * @param bool $special_chars Whether to include standard special characters. 2392 * @param bool $extra_special_chars Whether to include other special characters. 2393 */ 2394 return apply_filters( 'random_password', $password, $length, $special_chars, $extra_special_chars ); 2391 2395 } 2392 2396 endif;
Note: See TracChangeset
for help on using the changeset viewer.