From 4bbf254375dc9070d854844af6ffa4b03d0ceaea Mon Sep 17 00:00:00 2001 From: Aaron Jorbin Date: Sun, 28 Jun 2015 11:41:24 +0000 Subject: [PATCH] Add missing semicolon Introduced in [32983]. see #32757. Built from https://develop.svn.wordpress.org/trunk@32986 git-svn-id: http://core.svn.wordpress.org/trunk@32957 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/js/press-this.js | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/js/press-this.js b/wp-admin/js/press-this.js index e1b03e79bb..1a62b41d84 100644 --- a/wp-admin/js/press-this.js +++ b/wp-admin/js/press-this.js @@ -193,7 +193,7 @@ window.setTimeout( function() { window.self.close(); - }, 200 ) + }, 200 ); } catch( er ) { window.location.href = response.data.redirect; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 31e12476c6..ef587624c5 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-alpha-32985'; +$wp_version = '4.3-alpha-32986'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.