diff --git a/wp-includes/locale.php b/wp-includes/locale.php index b30d1fdf42..6a459e3e34 100644 --- a/wp-includes/locale.php +++ b/wp-includes/locale.php @@ -8,20 +8,3 @@ */ _deprecated_file( basename( __FILE__ ), '4.7.0' ); - -/** WP_Locale class */ -require_once ABSPATH . WPINC . '/class-wp-locale.php'; - -/** - * Checks if current locale is RTL. - * - * @since 3.0.0 - * - * @global WP_Locale $wp_locale - * - * @return bool Whether locale is RTL. - */ -function is_rtl() { - global $wp_locale; - return $wp_locale->is_rtl(); -} diff --git a/wp-includes/version.php b/wp-includes/version.php index 14e956b041..38238a7af9 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.8-alpha-39455'; +$wp_version = '4.8-alpha-39456'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.