Skip to content

Commit

Permalink
Fixes #1650. MySQL port was saved to the config file as 3306 regardle…
Browse files Browse the repository at this point in the history
…ss of installer value.
  • Loading branch information
jerel committed Aug 9, 2012
1 parent fd9682a commit daac8ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions installer/assets/config/database.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
'cache_on' => FALSE,
'char_set' => 'utf8',
'dbcollat' => 'utf8_unicode_ci',
'port' => 3306,
'port' => '__PORT__',

// 'Tough love': Forces strict mode to test your app for best compatibility
'stricton' => TRUE,
Expand Down Expand Up @@ -82,7 +82,7 @@
'cache_on' => FALSE,
'char_set' => 'utf8',
'dbcollat' => 'utf8_unicode_ci',
'port' => 3306,
'port' => '__PORT__',
);


Expand Down

0 comments on commit daac8ec

Please sign in to comment.