Give install.css on setup-config.php some cache busting. see #19592.

git-svn-id: http://svn.automattic.com/wordpress/trunk@19790 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2012-01-30 17:37:13 +00:00
parent 788d169f31
commit 9f4f2e85ce
1 changed files with 3 additions and 1 deletions

View File

@ -76,6 +76,8 @@ $step = isset( $_GET['step'] ) ? (int) $_GET['step'] : 0;
* @subpackage Installer_WP_Config
*/
function display_header() {
global $wp_version;
header( 'Content-Type: text/html; charset=utf-8' );
?>
<!DOCTYPE html>
@ -83,7 +85,7 @@ function display_header() {
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title><?php _e( 'WordPress &rsaquo; Setup Configuration File' ); ?></title>
<link rel="stylesheet" href="css/install.css" type="text/css" />
<link rel="stylesheet" href="css/install.css?ver=<?php echo $wp_version; ?>" type="text/css" />
</head>
<body>