Auth_Basic::memorizeURL PHP Method

memorizeURL() public method

Memorize current URL. Called when the first unsuccessful check is executed.
public memorizeURL ( )
    public function memorizeURL()
    {
        if ($this->app->page !== 'index' && !$this->recall('page', false)) {
            $this->memorize('page', $this->app->page);
            $g = $_GET;
            unset($g['page']);
            $this->memorize('args', $g);
        }
    }