1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-03 21:27:25 +02:00

PHP5 construct

This commit is contained in:
secretr
2011-09-13 09:27:46 +00:00
parent e84e2e7c92
commit 594feaf20c

View File

@@ -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();
} }