i18n: Fix the usage of sprintf replacements in the Multisite admin include files. See #22260.

git-svn-id: http://core.svn.wordpress.org/trunk@22271 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Peter Westwood 2012-10-23 11:28:36 +00:00
parent d30f0445e8
commit 4f2173666d

View File

@ -406,7 +406,7 @@ function display_space_usage() {
$space .= __( 'MB' );
}
?>
<strong><?php printf( __( 'Used: %1s%% of %2s' ), number_format( $percent_used ), $space ); ?></strong>
<strong><?php printf( __( 'Used: %1$s%% of %2$s' ), number_format( $percent_used ), $space ); ?></strong>
<?php
}