From 7db4e8b7c9dfaa1c0b9dade0ffb95c2125dc974a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= <gabor@hojtsy.hu>
Date: Fri, 7 Sep 2007 10:48:24 +0000
Subject: [PATCH] #112064 by Dave Cohen and pwolanin: do not cache installer
 redirects, so live Drupal pages will be visible instead of cached installer
 pages

---
 includes/install.inc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/includes/install.inc b/includes/install.inc
index 8234c37e605a..9860a20cc779 100644
--- a/includes/install.inc
+++ b/includes/install.inc
@@ -590,6 +590,7 @@ function drupal_install_fix_file($file, $mask, $message = TRUE) {
 function install_goto($path) {
   global $base_url;
   header('Location: '. $base_url .'/'. $path);
+  header('Cache-Control: no-cache'); // Not a permanent redirect.
   exit();
 }
 
-- 
GitLab