diff options
author | diegorivera <diego6616@yahoo.com.ar> | 2011-10-19 15:18:45 +0200 |
---|---|---|
committer | diegorivera <diego6616@yahoo.com.ar> | 2011-10-19 15:18:45 +0200 |
commit | 2b9aa8f0252a233404ec0a8ba2db68e91a8c6fa6 (patch) | |
tree | 4b45c3d65ba33c6f6d246081879e314374be5015 /system | |
parent | 33c3280d902bbe46096c3e2036ebbcce877219ae (diff) |
I wasn't following the CI code style guide.
Diffstat (limited to 'system')
-rw-r--r-- | system/libraries/Email.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/libraries/Email.php b/system/libraries/Email.php index 73ff2e7d1..c7d0bc52b 100644 --- a/system/libraries/Email.php +++ b/system/libraries/Email.php @@ -385,10 +385,10 @@ class CI_Email { //strip slashes only if magic quotes is ON //if we do it with magic quotes OFF, it strips real, user-inputted chars. - if (get_magic_quotes_gpc()) - { + if (get_magic_quotes_gpc()) + { $this->_body = stripslashes($this->_body); - } + } return $this; } |