Adding CSRF into config
Adding CSRF token into form open()
diff --git a/application/config/config.php b/application/config/config.php
index bd1429a..6e52bcc 100644
--- a/application/config/config.php
+++ b/application/config/config.php
@@ -267,6 +267,17 @@
/*
|--------------------------------------------------------------------------
+| Cross Site Forgery Request
+|--------------------------------------------------------------------------
+| Enables a CSFR cookie token to be set. When set to TRUE, token will be
+| checked on a submitted form. If you are accepting user data, it is strongly
+| recommended CSRF protection be enabled.
+*/
+$config['csrf_protection'] = FALSE;
+
+
+/*
+|--------------------------------------------------------------------------
| Output Compression
|--------------------------------------------------------------------------
|