From 19b1793fc30b4e7efd774d29a1e9fe52cc1f87a6 Mon Sep 17 00:00:00 2001 From: kenjis Date: Fri, 12 Feb 2016 08:04:05 +0900 Subject: [PATCH] Fix security.csrf_autoload default value See https://github.com/fuel/core/pull/1974#issuecomment-182758547 --- classes/security.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/security.html b/classes/security.html index 34cf04e68..9594286ac 100644 --- a/classes/security.html +++ b/classes/security.html @@ -158,7 +158,7 @@

Configuration

csrf_autoload boolean -
true
+
false
When true, load and check the CSRF token using check_token() automatically. A SecurityException will be thrown if the check fails.