diff options
author | Mike Funk <mfunk@xulonpress.com> | 2012-03-08 15:01:40 +0100 |
---|---|---|
committer | Mike Funk <mfunk@xulonpress.com> | 2012-03-08 15:01:40 +0100 |
commit | 98626f1b4b3002c64364d82080246b91aa5e4bd2 (patch) | |
tree | 5216da502b1d077570832417f4253cd45e55da70 /system/core/Security.php | |
parent | 7f42d060fb828bfb0bd857ad1a17b91070e52628 (diff) | |
parent | 5d27c43d29fc049497010ea62ac7877a64bfed92 (diff) |
Merge branch 'develop' of https://github.com/EllisLab/CodeIgniter into feature/form_val_config
Diffstat (limited to 'system/core/Security.php')
-rwxr-xr-x | system/core/Security.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/core/Security.php b/system/core/Security.php index 6f25fb5bb..2bffa41b7 100755 --- a/system/core/Security.php +++ b/system/core/Security.php @@ -138,8 +138,8 @@ class CI_Security { */ public function csrf_verify() { - // If no POST data exists we will set the CSRF cookie - if (count($_POST) === 0) + // If it's not a POST request we will set the CSRF cookie + if (strtoupper($_SERVER['REQUEST_METHOD']) !== 'POST') { return $this->csrf_set_cookie(); } |