From 05e8c03b6742033cf88885cb86217cadca3a4567 Mon Sep 17 00:00:00 2001 From: Andrey Andreev Date: Mon, 8 Oct 2012 11:11:27 +0300 Subject: Really fix #1715 --- system/core/Input.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'system') diff --git a/system/core/Input.php b/system/core/Input.php index 218eed3d7..0c1f2b08e 100755 --- a/system/core/Input.php +++ b/system/core/Input.php @@ -642,7 +642,7 @@ class CI_Input { // CSRF Protection check on HTTP requests - if ($this->_enable_csrf == TRUE && $this->is_cli_request()) + if ($this->_enable_csrf == TRUE && ! $this->is_cli_request()) { $this->security->csrf_verify(); } -- cgit v1.2.3-24-g4f1b