Ignore:
Timestamp:
May 22, 2006 5:29:19 AM (18 years ago)
Author:
scdev
Message:

Q - Added "sc-" to all css class selectors; Finished reworking Upload and ImageThumb? (now with GD support!); More PHP 5 upgrades.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/Auth_SQL.inc.php

    r119 r121  
    251251            WHERE " . $this->_params['db_primary_key'] . " = '" . $this->getVal('user_id') . "'
    252252        ");
    253         $_SESSION['_auth_file'] = array('authenticated' => false);
     253        $_SESSION[$this->_sess] = array('authenticated' => false);
    254254    }
    255255
     
    528528                $expire_reasons[] = 'idle_timeout expired';
    529529            }
    530             if ($_SESSION['_auth_file']['remote_ip'] != getRemoteAddr() && !$user_in_trusted_network) {
     530            if ($_SESSION[$this->_sess]['remote_ip'] != getRemoteAddr() && !$user_in_trusted_network) {
    531531                $expire_reasons[] = sprintf('remote_ip not matched (%s != %s)', $_SESSION[$this->_sess]['remote_ip'], getRemoteAddr());
    532532            }
Note: See TracChangeset for help on using the changeset viewer.