Changeset 1385 for trunk/bb-admin/class-install.php
- Timestamp:
- 03/30/2008 10:31:06 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/bb-admin/class-install.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bb-admin/class-install.php
r1370 r1385 994 994 995 995 // Loop through the sample config and write lines to the new config file 996 foreach ($sample_config as $line _num => $line) {996 foreach ($sample_config as $line) { 997 997 switch (substr($line,0,18)) { 998 998 case "define('BBDB_NAME'": … … 1326 1326 $this->strings[3]['form_errors']['keymaster_user_login'][] = 'userlogin'; 1327 1327 } 1328 $data['keymaster_user_login']['value'] = =sanitize_user($data['keymaster_user_login']['value']);1328 $data['keymaster_user_login']['value'] = sanitize_user($data['keymaster_user_login']['value']); 1329 1329 1330 1330 // bb_verify_email() needs this … … 1524 1524 1525 1525 // Loop through the sample config and write lines to the new config file 1526 foreach ($config as $line _num => $line) {1526 foreach ($config as $line) { 1527 1527 if (substr($line,0,18) == "define('BB_SECRET_") { 1528 1528 $config_lines[] = str_replace("'" . BB_SECRET_KEY . "'", "'" . $data2['wp_secret_key']['value'] . "'", $line);
Note: See TracChangeset
for help on using the changeset viewer.