Skip to content

Commit

Permalink
fixing email.php.default, from should have email as key
Browse files Browse the repository at this point in the history
  • Loading branch information
ceeram committed Sep 29, 2011
1 parent 8acd980 commit 22029a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/Config/email.php.default
Expand Up @@ -48,7 +48,7 @@ class EmailConfig {

public $smtp = array(
'transport' => 'Smtp',
'from' => array('My Site', 'site@localhost'),
'from' => array('site@localhost' => 'My Site'),
'host' => 'localhost',
'port' => 25,
'timeout' => 30,
Expand Down
2 changes: 1 addition & 1 deletion lib/Cake/Console/Templates/skel/Config/email.php.default
Expand Up @@ -48,7 +48,7 @@ class EmailConfig {

public $smtp = array(
'transport' => 'Smtp',
'from' => array('My Site', 'site@localhost'),
'from' => array('site@localhost' => 'My Site'),
'host' => 'localhost',
'port' => 25,
'timeout' => 30,
Expand Down

0 comments on commit 22029a1

Please sign in to comment.