Changeset 585 for branches/1.1dev/lib


Ignore:
Timestamp:
Mar 4, 2017 1:20:52 PM (7 years ago)
Author:
anonymous
Message:

Fix regressive bug when doing clearAuth during instanciation. Now just init the session vars.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/1.1dev/lib/AuthSQL.inc.php

    r577 r585  
    8989
    9090        if (!isset($_SESSION[$this->_auth_name])) {
    91             $this->clearAuth();
     91            $_SESSION[$this->_auth_name] = array();
     92            $_SESSION[$this->_auth_name]['authenticated'] = false;
    9293        }
    9394    }
Note: See TracChangeset for help on using the changeset viewer.