Ignore:
Timestamp:
Jul 30, 2014 10:43:49 PM (10 years ago)
Author:
anonymous
Message:

Changed private methods and properties to protected. A few minor bug fixes.

File:
1 edited

Legend:

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

    r478 r484  
    4949
    5050    // Namespace of this auth object.
    51     private $_ns;
     51    protected $_ns;
    5252
    5353    // Parameters to be specified by setParam().
    54     private $_params = array();
    55     private $_default_params = array(
     54    protected $_params = array();
     55    protected $_default_params = array(
    5656
    5757        // Full path to htpasswd file.
     
    7777
    7878    // Associative array of usernames to hashed passwords.
    79     private $_users = array();
     79    protected $_users = array();
    8080
    8181    /*
     
    350350    * @since    18 Apr 2006 18:17:48
    351351    */
    352     private function _loadHTPasswdFile()
     352    protected function _loadHTPasswdFile()
    353353    {
    354354        $app = &App::getInstance();
     
    387387    * @return string  The hashed password.
    388388    */
    389     private function _encrypt($password, $encrypted_password=null)
     389    protected function _encrypt($password, $encrypted_password=null)
    390390    {
    391391        switch ($this->_params['encryption_type']) {
Note: See TracChangeset for help on using the changeset viewer.