Merge branch '1.0' into 2.0

* 1.0:
  Typo in variable name
This commit is contained in:
Andreas Fischer 2015-09-05 18:14:03 +02:00
commit 09ac065459

View File

@ -957,7 +957,7 @@ abstract class Base
break;
case self::MODE_ECB:
if (!defined('OPENSSL_RAW_DATA')) {
$ciphetext.= openssl_encrypt('', $this->cipher_name_openssl_ecb, $this->key, true);
$ciphertext.= openssl_encrypt('', $this->cipher_name_openssl_ecb, $this->key, true);
}
$plaintext = openssl_decrypt($ciphertext, $this->cipher_name_openssl, $this->key, $this->openssl_options);
break;