summaryrefslogtreecommitdiffstats
path: root/user_guide_src
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2013-12-17 12:07:26 +0100
committerAndrey Andreev <narf@devilix.net>2013-12-17 12:07:26 +0100
commit25a246c2bf184f968c2d895de1653319eaa081aa (patch)
tree1d5e0c78a5340d0fac721919c3f4c7124dd80e00 /user_guide_src
parent12e7b94de8c07cb51de4a171ca9476631a5631cf (diff)
Fix #2775 (security lib docs)
Diffstat (limited to 'user_guide_src')
-rw-r--r--user_guide_src/source/libraries/security.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/user_guide_src/source/libraries/security.rst b/user_guide_src/source/libraries/security.rst
index 05553142f..be1f8d205 100644
--- a/user_guide_src/source/libraries/security.rst
+++ b/user_guide_src/source/libraries/security.rst
@@ -83,14 +83,14 @@ application/config/config.php file and setting this::
If you use the :doc:`form helper <../helpers/form_helper>`, then
``form_open()`` will automatically insert a hidden csrf field in
-your forms. If not, then you can use ``csrf_get_token_name()``
-and ``csrf_get_hash()``
+your forms. If not, then you can use ``get_csrf_token_name()``
+and ``get_csrf_hash()``
::
$csrf = array(
- 'name' => $this->security->csrf_get_token_name(),
- 'hash' => $this->security->csrf_get_hash()
+ 'name' => $this->security->get_csrf_token_name(),
+ 'hash' => $this->security->get_csrf_hash()
);
...