Ignore:
Timestamp:
Jun 5, 2006 1:33:26 AM (18 years ago)
Author:
scdev
Message:

Q - Also change getVal/setVal to get/set in Auth_File.

File:
1 edited

Legend:

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

    r146 r148  
    125125     * @param mixed $val      Value to set variable to.
    126126     */
    127     function setVal($key, $val)
     127    function set($key, $val)
    128128    {
    129129        if (!isset($_SESSION[$this->_ns]['user_data'])) {
     
    141141     * @return mixed          Value stored in session.
    142142     */
    143     function getVal($key, $default='')
     143    function get($key, $default='')
    144144    {
    145145        if (isset($_SESSION[$this->_ns][$key])) {
Note: See TracChangeset for help on using the changeset viewer.