Show
Ignore:
Timestamp:
03/30/05 15:05:00 (8 years ago)
Author:
fproulx
Message:

2005-03-30 Fran�ois Proulx <francois.proulx@…>

  • Finished RADIUS authentication and accounting
  • Accounting Unique session ID is now based on the same token we use
  • Fixed all issues with lost_username, lost_password etc...
  • User class has new static function getUsersByEmail and getUsersByUsername
  • Added translations for new features
  • Translated the validation, lost password, username e-mails
  • Tested quite a bit, this version is considered stable
  • A few examples on how set different RADIUS or local authenticators can be found in the config.php
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog-auth/wifidog/classes/Authenticator.php

    r516 r517  
    2929abstract class Authenticator 
    3030{ 
    31         protected $mAccountOrigin; 
     31        private $mAccountOrigin; 
    3232 
    3333        function __construct($account_orgin) 
    3434        { 
    3535                $this->mAccountOrigin = $account_orgin; 
     36        } 
     37         
     38        public function getAccountOrigin() 
     39        { 
     40                return $this->mAccountOrigin;  
    3641        } 
    3742