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