mirror of
https://github.com/e107inc/e107.git
synced 2025-05-04 19:27:54 +02:00
PHP5 construct
This commit is contained in:
parent
e84e2e7c92
commit
594feaf20c
@ -8,10 +8,8 @@
|
||||
*
|
||||
*
|
||||
*
|
||||
* $Source: /cvs_backup/e107_0.8/e107_plugins/alt_auth/extended_password_handler.php,v $
|
||||
* $Revision$
|
||||
* $Date$
|
||||
* $Author$
|
||||
* $URL$
|
||||
* $Id $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -61,11 +59,12 @@ class ExtendedPasswordHandler extends UserHandler
|
||||
|
||||
|
||||
// Constructor
|
||||
function ExtendedPasswordHandler()
|
||||
function __construct()
|
||||
{
|
||||
// Lookup string ready for base64 conversions
|
||||
$this->itoa64 = './0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
|
||||
$this->UserHandler(); // Ancestor constructor
|
||||
// Ancestor constructor
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user