diff options
author | buhay <drag0n2815@gmail.com> | 2013-04-18 18:06:49 +0200 |
---|---|---|
committer | buhay <drag0n2815@gmail.com> | 2013-04-18 18:06:49 +0200 |
commit | c6da1ef1ffda3e281163b73015c4e95d50bae4b4 (patch) | |
tree | c48601de1fba05c479fb923a9ef87268ca875655 | |
parent | 466e8083e7daed0926325b5646004f314489ef7f (diff) |
Change boolean to bool.
Added whitespace.
-rw-r--r-- | system/libraries/Email.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/system/libraries/Email.php b/system/libraries/Email.php index 886d7bd91..10253c796 100644 --- a/system/libraries/Email.php +++ b/system/libraries/Email.php @@ -1236,7 +1236,7 @@ class CI_Email { /** * Build Final Body and attachments * - * @return boolean + * @return bool */ protected function _build_message() { @@ -1610,6 +1610,7 @@ class CI_Email { { return FALSE; } + $result = $this->_spool_email(); if ($result && $auto_clear) @@ -1672,6 +1673,7 @@ class CI_Email { { return FALSE; } + $this->_spool_email(); } } |