Skip to content

Commit

Permalink
Fixed a bug in the Installer
Browse files Browse the repository at this point in the history
  • Loading branch information
Xety committed Nov 3, 2016
1 parent c6d7a4c commit 6794505
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Console/Installer.php
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ public static function setDatabaseName($dir, $io)
$content = str_replace('__DATABASE_NAME__', $databaseName, $content, $count);

$databaseName = $io->ask('What is the database username ? ', 'xeta');
$content = str_replace('__DATABASE_USER__', $databaseName, $content, $count);
$content = str_replace('__DATABASE_USERNAME__', $databaseName, $content, $count);

$databaseName = $io->ask('What is the database password ? ', 'xeta');
$content = str_replace('__DATABASE_PASSWORD__', $databaseName, $content, $count);
Expand Down

0 comments on commit 6794505

Please sign in to comment.