From 74bb829a5aa194104f65825cd0edde6f2da5644e Mon Sep 17 00:00:00 2001 From: Josh Sherman Date: Mon, 20 Oct 2008 01:11:25 +0000 Subject: [PATCH] Fixed a bug. git-svn-id: http://svn.cleancode.org/svn/pickles@82 4d10bc64-7434-11dc-a737-d2d0f8310089 --- classes/Mailer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/Mailer.php b/classes/Mailer.php index 5615994..9774d83 100644 --- a/classes/Mailer.php +++ b/classes/Mailer.php @@ -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; }