diff --git a/wp-admin/options-privacy.php b/wp-admin/options-privacy.php index 48984be978..5c22d39d5d 100644 --- a/wp-admin/options-privacy.php +++ b/wp-admin/options-privacy.php @@ -14,7 +14,7 @@ if ( ! current_user_can( 'manage_privacy_options' ) ) { } if ( isset( $_GET['tab'] ) && 'policyguide' === $_GET['tab'] ) { - require_once dirname( __FILE__ ) . '/privacy-policy-guide.php'; + require_once __DIR__ . '/privacy-policy-guide.php'; return; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 3aa8c34114..d28ba43f4b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.3-alpha-55690'; +$wp_version = '6.3-alpha-55691'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.