Fixed a bug.

git-svn-id: http://svn.cleancode.org/svn/pickles@82 4d10bc64-7434-11dc-a737-d2d0f8310089
This commit is contained in:
Josh Sherman 2008-10-20 01:11:25 +00:00
parent 42e316fc05
commit 74bb829a5a

View file

@ -55,7 +55,7 @@ class Mailer extends Object {
$defaults = $this->config->contact;
// Pulls the recipients from the config
if (!isset($this->recipients) && isset($defaules->recipients->recipient)) {
if (!isset($this->recipients)) { // && isset($defaules->recipients->recipient)) {
$this->recipients = $defaults->recipients->recipient;
}