diff options
author | diegorivera <diego6616@yahoo.com.ar> | 2011-10-19 15:18:45 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-10-27 00:57:31 +0200 |
commit | 6eab49a844b3542a5efee6620233a86f645a30f5 (patch) | |
tree | 51cdb14db22ec3e0646e6f6de997e39ea86e8078 /system/libraries/Email.php | |
parent | 13095cbc1b1b0509ac8c984e7a5fd704d9826569 (diff) |
I wasn't following the CI code style guide.
Diffstat (limited to 'system/libraries/Email.php')
-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 2916b9a13..5f8d48682 100644 --- a/system/libraries/Email.php +++ b/system/libraries/Email.php @@ -383,10 +383,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; } |