From 56e1b57ff55e3e409a382bec101d010b04c3be07 Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Fri, 11 Feb 2005 03:51:13 +0000 Subject: [PATCH] http://mosquito.wordpress.org/view.php?id=586 git-svn-id: https://develop.svn.wordpress.org/trunk@2271 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/setup-config.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/setup-config.php b/wp-admin/setup-config.php index 026bd32dc1..17adfac7b0 100644 --- a/wp-admin/setup-config.php +++ b/wp-admin/setup-config.php @@ -10,8 +10,8 @@ $configFile = file('../wp-config-sample.php'); if (!is_writable('../')) die("Sorry, I can't write to the directory. You'll have to either change the permissions on your WordPress directory or create your wp-config.php manually."); -$step = $_GET['step']; -if (!$step) $step = 0; +$step = 0; +if(isset($_GET['step'])) $step = $_GET['step']; ?>