summaryrefslogtreecommitdiffstats
path: root/system/libraries/Email.php
diff options
context:
space:
mode:
authorbuhay <drag0n2815@gmail.com>2013-04-18 18:06:49 +0200
committerbuhay <drag0n2815@gmail.com>2013-04-18 18:06:49 +0200
commitc6da1ef1ffda3e281163b73015c4e95d50bae4b4 (patch)
treec48601de1fba05c479fb923a9ef87268ca875655 /system/libraries/Email.php
parent466e8083e7daed0926325b5646004f314489ef7f (diff)
Change boolean to bool.
Added whitespace.
Diffstat (limited to 'system/libraries/Email.php')
-rw-r--r--system/libraries/Email.php4
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();
}
}