diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-01-08 04:23:07 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-01-08 04:23:07 +0100 |
commit | 3c7c461a93145b045ba688585a5b606e28b7d7cb (patch) | |
tree | 349412385e03bab484bbbcf306a2b1d3d59988a7 /application/config | |
parent | 92849d9cc553693a3eda5efb6a648187f6ce6064 (diff) | |
parent | 352d60e9f3a65def29e02a4507ef742eac255333 (diff) |
Merge remote-tracking branch 'upstream/develop' into develop-db-oci8
Diffstat (limited to 'application/config')
-rw-r--r-- | application/config/config.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/application/config/config.php b/application/config/config.php index bb35324c3..17b854b29 100644 --- a/application/config/config.php +++ b/application/config/config.php @@ -326,12 +326,14 @@ $config['global_xss_filtering'] = FALSE; | 'csrf_token_name' = The token name | 'csrf_cookie_name' = The cookie name | 'csrf_expire' = The number in seconds the token should expire. +| 'csrf_regenerate' = Regenerate token on every submission | 'csrf_exclude_uris' = Array of URIs which ignore CSRF checks */ $config['csrf_protection'] = FALSE; $config['csrf_token_name'] = 'csrf_test_name'; $config['csrf_cookie_name'] = 'csrf_cookie_name'; $config['csrf_expire'] = 7200; +$config['csrf_regenerate'] = TRUE; $config['csrf_exclude_uris'] = array(); /* |