diff options
author | Derek Allard <derek.allard@ellislab.com> | 2010-07-22 20:10:26 +0200 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2010-07-22 20:10:26 +0200 |
commit | 958543a38c2c97b0ec4c10fc9faf4f0753143880 (patch) | |
tree | 3fe57f162c835afc278b537fd2e5932828c55e6c /system/helpers | |
parent | 924000e27e10eb32cff6b7666a9d41546fd5f2bd (diff) |
Adding CSRF into config
Adding CSRF token into form open()
Diffstat (limited to 'system/helpers')
-rw-r--r-- | system/helpers/form_helper.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/system/helpers/form_helper.php b/system/helpers/form_helper.php index 5feb3ce66..632f94505 100644 --- a/system/helpers/form_helper.php +++ b/system/helpers/form_helper.php @@ -62,6 +62,12 @@ if ( ! function_exists('form_open')) $form .= form_hidden($hidden); } + // CSRF + if ($CI->config->item('csrf_protection') === TRUE) + { + $form .= form_hidden($CI->security->csrf_token_name, $CI->security->csrf_hash); + } + return $form; } } |