diff options
author | Christopher Smith <chris@jalakai.co.uk> | 2015-05-15 19:33:59 +0200 |
---|---|---|
committer | Christopher Smith <chris@jalakai.co.uk> | 2015-05-15 19:33:59 +0200 |
commit | e56e288689415ba069beb129a3ed9dccc404c0a3 (patch) | |
tree | da27a0ddeea160ce92aca5d27e082a8a8a93b93c /inc/phpseclib/Crypt_Rijndael.php | |
parent | 45e8987e1f40331011f6c91dab7bff6cb34631ce (diff) | |
download | rpg-e56e288689415ba069beb129a3ed9dccc404c0a3.tar.gz rpg-e56e288689415ba069beb129a3ed9dccc404c0a3.tar.bz2 |
PHP7 Compat updates on the phpseclib
This is a quick fix in advance of the library being updated to
the latest & PHP7 compatible version.
Diffstat (limited to 'inc/phpseclib/Crypt_Rijndael.php')
-rw-r--r-- | inc/phpseclib/Crypt_Rijndael.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/phpseclib/Crypt_Rijndael.php b/inc/phpseclib/Crypt_Rijndael.php index c63e0ff7e..33f42da17 100644 --- a/inc/phpseclib/Crypt_Rijndael.php +++ b/inc/phpseclib/Crypt_Rijndael.php @@ -699,9 +699,9 @@ class Crypt_Rijndael extends Crypt_Base { * @param optional Integer $mode * @access public */ - function Crypt_Rijndael($mode = CRYPT_RIJNDAEL_MODE_CBC) + function __construct($mode = CRYPT_RIJNDAEL_MODE_CBC) { - parent::Crypt_Base($mode); + parent::__construct($mode); } /** |