Use correct `@since` tag for `wp_ajax_generate_password()`.

See #33450.

git-svn-id: https://develop.svn.wordpress.org/trunk@34313 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dominik Schilling (ocean90) 2015-09-18 20:18:22 +00:00
parent 1299974e7d
commit 0c642e4730
1 changed files with 2 additions and 2 deletions

View File

@ -3205,9 +3205,9 @@ function wp_ajax_crop_image() {
} }
/** /**
* Generates a password via ajax. * Ajax handler for generating a password.
* *
* @since 4.3.1 * @since 4.4.0
*/ */
function wp_ajax_generate_password() { function wp_ajax_generate_password() {
wp_send_json_success( wp_generate_password( 24 ) ); wp_send_json_success( wp_generate_password( 24 ) );