Fixed invalid return variable

This commit is contained in:
Deon George 2009-07-05 13:55:53 +10:00
parent 640abcbf3b
commit 20bdaa4663

View File

@ -789,7 +789,7 @@ function blowfish_decrypt($encdata,$secret=null) {
if (file_exists(LIBDIR.'blowfish.php'))
require_once LIBDIR.'blowfish.php';
else
return $data;
return $encdata;
$pma_cipher = new Horde_Cipher_blowfish;
$decrypt = '';