diff options
| author | Valentin Sheyretski <valio@vsite.org> | 2015-07-15 15:25:32 +0300 |
|---|---|---|
| committer | Damien Regad <dregad@mantisbt.org> | 2015-08-11 14:56:49 +0200 |
| commit | 9ffa02e6ddc88dbfdfdf4437e0a398cc39960094 (patch) | |
| tree | 9d5cca8e0e3fe066a8e2253df14bd09718deaa83 /session/adodb-encrypt-mcrypt.php | |
| parent | ae85debec8c75c47b55566c3df08ec39002138df (diff) | |
| download | adodb-9ffa02e6ddc88dbfdfdf4437e0a398cc39960094.tar.gz adodb-9ffa02e6ddc88dbfdfdf4437e0a398cc39960094.tar.bz2 adodb-9ffa02e6ddc88dbfdfdf4437e0a398cc39960094.zip | |
Fix#139: Remove PHP 4 Constructors
This is the original commit from @valioz, rebased on latest master
Signed-off-by: Damien Regad <dregad@mantisbt.org>
Conflicts:
drivers/adodb-db2ora.inc.php
drivers/adodb-mssqlpo.inc.php
drivers/adodb-odbc_oracle.inc.php
Diffstat (limited to 'session/adodb-encrypt-mcrypt.php')
| -rw-r--r-- | session/adodb-encrypt-mcrypt.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/session/adodb-encrypt-mcrypt.php b/session/adodb-encrypt-mcrypt.php index 38d68fba..a7b47409 100644 --- a/session/adodb-encrypt-mcrypt.php +++ b/session/adodb-encrypt-mcrypt.php @@ -69,7 +69,7 @@ class ADODB_Encrypt_MCrypt { /** */ - function ADODB_Encrypt_MCrypt($cipher = null, $mode = null, $source = null) { + function __construct($cipher = null, $mode = null, $source = null) { if (!$cipher) { $cipher = MCRYPT_RIJNDAEL_256; } |
