I18N: Remove `<code>` tag from translatable string in `wp-admin/includes/class-wp-filesystem-ssh2.php`.
Props ramiy. Fixes #35741. Built from https://develop.svn.wordpress.org/trunk@36670 git-svn-id: http://core.svn.wordpress.org/trunk@36637 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
4a2676ab8b
commit
aff11cdc9f
|
@ -62,7 +62,14 @@ class WP_Filesystem_SSH2 extends WP_Filesystem_Base {
|
|||
return;
|
||||
}
|
||||
if ( !function_exists('stream_get_contents') ) {
|
||||
$this->errors->add('ssh2_php_requirement', __('The ssh2 PHP extension is available, however, we require the PHP5 function <code>stream_get_contents()</code>'));
|
||||
$this->errors->add(
|
||||
'ssh2_php_requirement',
|
||||
sprintf(
|
||||
/* translators: %s: stream_get_contents() */
|
||||
__( 'The ssh2 PHP extension is available, however, we require the PHP5 function %s' ),
|
||||
'<code>stream_get_contents()</code>'
|
||||
)
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.5-alpha-36669';
|
||||
$wp_version = '4.5-alpha-36670';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue