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:
parent
b4eb28f945
commit
650c16efae
3 changed files with 0 additions and 26 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue