Skip to content

Commit

Permalink
set default table_prefix to "wp_"
Browse files Browse the repository at this point in the history
  • Loading branch information
spuriousdata authored and scribu committed Mar 10, 2012
1 parent 8a6960c commit 298eb69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/php/wp-cli/wp-cli.php
Expand Up @@ -59,7 +59,7 @@
$_POST['uname'] = $assoc_args['user'];
$_POST['pwd'] = $assoc_args['pass'];
$_POST['dbhost'] = isset( $assoc_args['host'] ) ? $assoc_args['host'] : 'localhost';
$_POST['prefix'] = isset( $assoc_args['prefix'] ) ? $assoc_args['prefix'] : '';
$_POST['prefix'] = isset( $assoc_args['prefix'] ) ? $assoc_args['prefix'] : 'wp_';

$_GET['step'] = 2;
require WP_ROOT . '/wp-admin/setup-config.php';
Expand Down

0 comments on commit 298eb69

Please sign in to comment.