summaryrefslogtreecommitdiffstatshomepage
path: root/wp-admin/setup-config.php
diff options
context:
space:
mode:
authorAndrew Nacin <nacin@git.wordpress.org>2012-01-30 17:37:13 +0000
committerAndrew Nacin <nacin@git.wordpress.org>2012-01-30 17:37:13 +0000
commitffff76d391d1452ba22a5a994356e408f557e174 (patch)
tree01f9a221062ab86406e3330765bab181196912ef /wp-admin/setup-config.php
parent460ef260f72240fb6af93f833e243c461bea01eb (diff)
downloadwordpress-ffff76d391d1452ba22a5a994356e408f557e174.tar.gz
wordpress-ffff76d391d1452ba22a5a994356e408f557e174.zip
Give install.css on setup-config.php some cache busting. see #19592.
git-svn-id: https://develop.svn.wordpress.org/trunk@19790 602fd350-edb4-49c9-b593-d223f7449a82
Diffstat (limited to 'wp-admin/setup-config.php')
-rw-r--r--wp-admin/setup-config.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/wp-admin/setup-config.php b/wp-admin/setup-config.php
index 68d3ee53d4..e32899d543 100644
--- a/wp-admin/setup-config.php
+++ b/wp-admin/setup-config.php
@@ -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>