From cd0ba24e9583a707b0ba055f0a3d9cd0f9b36549 Mon Sep 17 00:00:00 2001 From: Ian Stewart Date: Wed, 5 Nov 2014 20:31:22 +0000 Subject: [PATCH] Twenty Fifteen: Our next-previous labels were reversed. Props iamtakashi, fixes #30265. Built from https://develop.svn.wordpress.org/trunk@30247 git-svn-id: http://core.svn.wordpress.org/trunk@30247 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentyfifteen/single.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-content/themes/twentyfifteen/single.php b/wp-content/themes/twentyfifteen/single.php index a4ff29383e..a0bfc8060c 100644 --- a/wp-content/themes/twentyfifteen/single.php +++ b/wp-content/themes/twentyfifteen/single.php @@ -25,8 +25,8 @@ get_header(); ?> _x( 'Previous%title', 'Previous post link', 'twentyfifteen' ), - 'prev_text' => _x( 'Next%title', 'Next post link', 'twentyfifteen' ), + 'next_text' => _x( 'Next%title', 'Next post link', 'twentyfifteen' ), + 'prev_text' => _x( 'Previous%title', 'Previous post link', 'twentyfifteen' ), ) ); ?> diff --git a/wp-includes/version.php b/wp-includes/version.php index 1fab5ab3ce..7728257c0f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.1-alpha-30246'; +$wp_version = '4.1-alpha-30247'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.