diff options
author | Andrey Andreev <narf@devilix.net> | 2015-02-05 14:31:08 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2015-02-05 14:31:08 +0100 |
commit | 79533cac482a9d8f9211c8ff607968de3b27d1e4 (patch) | |
tree | f3cbaf44b6cf7cab075f4cc5f388bd1c3ecabd79 /system/libraries/Encryption.php | |
parent | 74d0e23eae054c49bbf7d9d5c4738fa5a63754cf (diff) | |
parent | 40bbd60bcc5135f898f46e502f7b04ef065274e0 (diff) |
Merge pull request #3551 from gadelat/voids
Fixed inconsistent return types
Diffstat (limited to 'system/libraries/Encryption.php')
-rw-r--r-- | system/libraries/Encryption.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Encryption.php b/system/libraries/Encryption.php index fad4ea7f8..e3e68139a 100644 --- a/system/libraries/Encryption.php +++ b/system/libraries/Encryption.php @@ -160,7 +160,7 @@ class CI_Encryption { if ( ! $this->_drivers['mcrypt'] && ! $this->_drivers['openssl']) { - return show_error('Encryption: Unable to find an available encryption driver.'); + show_error('Encryption: Unable to find an available encryption driver.'); } isset(self::$func_override) OR self::$func_override = (extension_loaded('mbstring') && ini_get('mbstring.func_override')); |