Remove the PHP 5.3 deprecated split function.
This commit is contained in:
@@ -91,6 +91,6 @@ class IDF_Form_RegisterInputKey extends Pluf_Form
|
||||
return false;
|
||||
}
|
||||
$cr = new Pluf_Crypt(md5(Pluf::f('secret_key')));
|
||||
return split(':', $cr->decrypt($encrypted), 2);
|
||||
return explode(':', $cr->decrypt($encrypted), 2);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user