Update a config_item() use case for the new NULL return value
diff --git a/system/core/Security.php b/system/core/Security.php
index cffdb9a..71d4b37 100755
--- a/system/core/Security.php
+++ b/system/core/Security.php
@@ -163,7 +163,7 @@
 			// CSRF config
 			foreach (array('csrf_expire', 'csrf_token_name', 'csrf_cookie_name') as $key)
 			{
-				if (FALSE !== ($val = config_item($key)))
+				if (NULL !== ($val = config_item($key)))
 				{
 					$this->{'_'.$key} = $val;
 				}