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

git-svn-id: https://develop.svn.wordpress.org/trunk@22271 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood 2012-10-23 11:28:36 +00:00
parent 44682216a8
commit 4b3f786b40
1 changed files with 1 additions and 1 deletions

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
}