Use the correct parameter variables in the hook docs for wp_upgrade.

See #27700.


git-svn-id: https://develop.svn.wordpress.org/trunk@27998 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes (DrewAPicture) 2014-04-07 20:13:00 +00:00
parent 3b7d881f3c
commit 4d4921a9ac

View File

@ -332,8 +332,8 @@ function wp_upgrade() {
*
* @since 3.9.0
*
* @param int $new_db_version The new $wp_db_version.
* @param int $old_db_version The old $wp_db_version.
* @param int $wp_db_version The new $wp_db_version.
* @param int $wp_current_db_version The old (current) $wp_db_version.
*/
do_action( 'wp_upgrade', $wp_db_version, $wp_current_db_version );
}