Removed session_start in controller, removed exception from Security class

Security class doesn't need to bark so much, just fail and move on
This commit is contained in:
Josh Sherman 2013-02-20 11:38:16 -05:00
parent b4eb28f945
commit 650c16efae
3 changed files with 0 additions and 26 deletions

View file

@ -130,7 +130,6 @@ class Security
{
if (session_id() == '')
{
throw new Exception('Sessions must be enabled to use the Security class');
return false;
}
else