From d1bdd591833520bfdece06e0263376295bfabf55 Mon Sep 17 00:00:00 2001 From: Dominik Schilling Date: Fri, 18 Sep 2015 20:29:26 +0000 Subject: [PATCH] Don't use `` in translation strings in `wp-admin/includes/plugin.php`. Props ramiy. Fixes #31856. Built from https://develop.svn.wordpress.org/trunk@34314 git-svn-id: http://core.svn.wordpress.org/trunk@34278 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/plugin.php | 5 +++-- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/wp-admin/includes/plugin.php b/wp-admin/includes/plugin.php index e5739be355..ca03f93bd5 100644 --- a/wp-admin/includes/plugin.php +++ b/wp-admin/includes/plugin.php @@ -89,7 +89,8 @@ function get_plugin_data( $plugin_file, $markup = true, $translate = true ) { // Site Wide Only is the old header for Network if ( ! $plugin_data['Network'] && $plugin_data['_sitewide'] ) { - _deprecated_argument( __FUNCTION__, '3.0', sprintf( __( 'The %1$s plugin header is deprecated. Use %2$s instead.' ), 'Site Wide Only: true', 'Network: true' ) ); + /* translators: 1: Site Wide Only: true, 2: Network: true */ + _deprecated_argument( __FUNCTION__, '3.0', sprintf( __( 'The %1$s plugin header is deprecated. Use %2$s instead.' ), 'Site Wide Only: true', 'Network: true' ) ); $plugin_data['Network'] = $plugin_data['_sitewide']; } $plugin_data['Network'] = ( 'true' == strtolower( $plugin_data['Network'] ) ); @@ -1955,4 +1956,4 @@ function wp_clean_plugins_cache( $clear_update_cache = true ) { function plugin_sandbox_scrape( $plugin ) { wp_register_plugin_realpath( WP_PLUGIN_DIR . '/' . $plugin ); include( WP_PLUGIN_DIR . '/' . $plugin ); -} \ No newline at end of file +} diff --git a/wp-includes/version.php b/wp-includes/version.php index 19d4d926d2..4b9d30ed14 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34313'; +$wp_version = '4.4-alpha-34314'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.