diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-07-17 05:31:35 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-07-17 05:31:35 +0200 |
commit | 3b840b60c5cc9041098f971c4c58889bc609d82a (patch) | |
tree | 55213175b4edc0cbb50be97ea92036b2aec7cbcb /system | |
parent | 1b1b67693060ecb6dd399ea6aee4a5503d96adda (diff) | |
parent | 866a23fd3ff7c1eab93ae015e37addc414aae2e4 (diff) |
Merge branch 'develop' of github.com:philsturgeon/codeigniter-reactor into develop
Diffstat (limited to 'system')
-rw-r--r-- | system/helpers/form_helper.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/helpers/form_helper.php b/system/helpers/form_helper.php index 2925d3c7c..5720a06ec 100644 --- a/system/helpers/form_helper.php +++ b/system/helpers/form_helper.php @@ -64,8 +64,8 @@ if ( ! function_exists('form_open')) $form .= '>'; - // CSRF - if ($CI->config->item('csrf_protection') === TRUE) + // Add CSRF field if enabled, but leave it out for GET requests and requests to external websites + if ($CI->config->item('csrf_protection') === TRUE AND ! (strpos($action, $CI->config->site_url()) === FALSE OR strpos($form, 'method="get"'))) { $hidden[$CI->security->get_csrf_token_name()] = $CI->security->get_csrf_hash(); } |