mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
I18N: Remove PHP function name from translatable string in WP_Debug_Data
.
Props ramiy. Fixes #47254. Built from https://develop.svn.wordpress.org/trunk@45399 git-svn-id: http://core.svn.wordpress.org/trunk@45210 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e3bb526606
commit
729d4a4942
@ -605,7 +605,11 @@ class WP_Debug_Data {
|
||||
if ( ! function_exists( 'ini_get' ) ) {
|
||||
$info['wp-server']['fields']['ini_get'] = array(
|
||||
'label' => __( 'Server settings' ),
|
||||
'value' => __( 'Unable to determine some settings, as the ini_get() function has been disabled.' ),
|
||||
'value' => sprintf(
|
||||
/* translators: %s: ini_get() */
|
||||
__( 'Unable to determine some settings, as the %s function has been disabled.' ),
|
||||
'ini_get()'
|
||||
),
|
||||
'debug' => 'ini_get() is disabled',
|
||||
);
|
||||
} else {
|
||||
|
@ -13,7 +13,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.3-alpha-45398';
|
||||
$wp_version = '5.3-alpha-45399';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user