summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-09-07 10:48:24 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-09-07 10:48:24 +0000
commit7db4e8b7c9dfaa1c0b9dade0ffb95c2125dc974a (patch)
treec258dcf1f47c1de45901da4a079bd116fdba7f6f
parent92d9533353e6cc555c6c9bbcfa9579fe04404445 (diff)
downloadbrdo-7db4e8b7c9dfaa1c0b9dade0ffb95c2125dc974a.tar.gz
brdo-7db4e8b7c9dfaa1c0b9dade0ffb95c2125dc974a.tar.bz2
#112064 by Dave Cohen and pwolanin: do not cache installer redirects, so live Drupal pages will be visible instead of cached installer pages
-rw-r--r--includes/install.inc1
1 files changed, 1 insertions, 0 deletions
diff --git a/includes/install.inc b/includes/install.inc
index 8234c37e6..9860a20cc 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();
}