[FIX] Removed undefined variable

This commit is contained in:
Vyacheslav Pavlov 2016-07-21 17:39:38 +03:00
parent 47e4d7c9a1
commit 42ebcda2e5

View file

@ -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;