From 42ebcda2e52a9439ad0e6c590f7ba96ab6f297bb Mon Sep 17 00:00:00 2001 From: Vyacheslav Pavlov Date: Thu, 21 Jul 2016 17:39:38 +0300 Subject: [PATCH] [FIX] Removed undefined variable --- Mage/Task/BuiltIn/Ioncube/EncryptTask.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage/Task/BuiltIn/Ioncube/EncryptTask.php b/Mage/Task/BuiltIn/Ioncube/EncryptTask.php index c51032d..645ee03 100644 --- a/Mage/Task/BuiltIn/Ioncube/EncryptTask.php +++ b/Mage/Task/BuiltIn/Ioncube/EncryptTask.php @@ -435,7 +435,7 @@ class EncryptTask extends AbstractTask private function checkFileCoding($filename) { // check to see if this is an encrypted file - $ioncube = ioncube_read_file($filename, $ioncubeType); + $ioncube = ioncube_read_file($filename); if (is_int($ioncube)) { // we got an error from ioncube, so its encrypted return true;