Changeset 1108 for trunk/wp-admin/install-config.php
- Timestamp:
- 04/20/2004 10:56:47 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/install-config.php
r964 r1108 11 11 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."); 12 12 13 $step = $ HTTP_GET_VARS['step'];13 $step = $_GET['step']; 14 14 if (!$step) $step = 0; 15 15 ?> … … 105 105 106 106 case 2: 107 $dbname = $ HTTP_POST_VARS['dbname'];108 $uname = $ HTTP_POST_VARS['uname'];109 $passwrd = $ HTTP_POST_VARS['pwd'];110 $dbhost = $ HTTP_POST_VARS['dbhost'];111 $prefix = $ HTTP_POST_VARS['prefix'];107 $dbname = $_POST['dbname']; 108 $uname = $_POST['uname']; 109 $passwrd = $_POST['pwd']; 110 $dbhost = $_POST['dbhost']; 111 $prefix = $_POST['prefix']; 112 112 if (empty($prefix)) $prefix = 'wp_'; 113 113
Note: See TracChangeset
for help on using the changeset viewer.