diff --git a/wp-admin/revision.php b/wp-admin/revision.php index 12ec2b6b1f..d5ab873666 100644 --- a/wp-admin/revision.php +++ b/wp-admin/revision.php @@ -15,11 +15,10 @@ require_once __DIR__ . '/admin.php'; require ABSPATH . 'wp-admin/includes/revision.php'; /** - * @global int $revision Optional. The revision ID. - * @global string $action The action to take. - * Accepts 'restore', 'view' or 'edit'. - * @global int $from The revision to compare from. - * @global int $to Optional, required if revision missing. The revision to compare to. + * @global int $revision_id Optional. The revision ID. + * @global string $action The action to take. Accepts 'restore', 'view', or 'edit'. + * @global int $from The revision to compare from. + * @global int $to Optional, required if revision missing. The revision to compare to. */ $revision_id = ! empty( $_REQUEST['revision'] ) ? absint( $_REQUEST['revision'] ) : 0; diff --git a/wp-includes/version.php b/wp-includes/version.php index 0b0f6f0042..5c0eb4a03e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.9-alpha-60911'; +$wp_version = '6.9-alpha-60912'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.