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

@ -148,18 +148,6 @@ class Controller extends Object
exit;
}
// Establishes the session
if (ini_get('session.auto_start') == 0)
{
if ($module->session)
{
if (session_id() == '')
{
session_start();
}
}
}
// Validates security level
if ($module->security !== false)
{