From 20bdaa466320a59b39ed14b0e6d9a937ee247c83 Mon Sep 17 00:00:00 2001 From: Deon George Date: Sun, 5 Jul 2009 13:55:53 +1000 Subject: [PATCH] Fixed invalid return variable --- lib/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/functions.php b/lib/functions.php index cb0dbfa..c5d0e23 100644 --- a/lib/functions.php +++ b/lib/functions.php @@ -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 = '';