summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source
diff options
context:
space:
mode:
authorAlex Bilbie <alex@alexbilbie.com>2012-07-31 12:42:06 +0200
committerAlex Bilbie <alex@alexbilbie.com>2012-07-31 12:43:09 +0200
commit3a2d573a96241c01124d15c1ce517078e07c6235 (patch)
treeb09477ff4a9396fcb680d66af16657e3c20ac5e1 /user_guide_src/source
parentbdb99999195711903af712fab58fdf4ef3da72ad (diff)
Added upgrade note about the breaking change in the email library. Problem noticed in #1671
Diffstat (limited to 'user_guide_src/source')
-rw-r--r--user_guide_src/source/installation/upgrade_300.rst14
1 files changed, 13 insertions, 1 deletions
diff --git a/user_guide_src/source/installation/upgrade_300.rst b/user_guide_src/source/installation/upgrade_300.rst
index f304a716f..f3a637326 100644
--- a/user_guide_src/source/installation/upgrade_300.rst
+++ b/user_guide_src/source/installation/upgrade_300.rst
@@ -138,4 +138,16 @@ As a result of that, the 'anchor_class' setting is now deprecated and scheduled
CodeIgniter 3.1+.
.. note:: This setting is still available, but you're strongly encouraged to remove its' usage sooner
- rather than later. \ No newline at end of file
+ rather than later.
+
+Email library
+=============
+
+The :doc:`Email library <../libraries/email>` will automatically clear the set parameters after successfully sending
+emails. To override this behaviour, pass FALSE as the first parameter in the ``send()`` function:
+
+::
+ if ($this->email->send(FALSE))
+ {
+ // Parameters won't be cleared
+ } \ No newline at end of file