Remove php sockets from the dependency list

This commit is contained in:
FrancescoUK
2018-03-28 19:01:34 +01:00
parent 01afdc5979
commit 84a5f654b1

View File

@@ -82,7 +82,7 @@ class Login extends CI_Controller
{
// get PHP extensions and check that the required ones are installed
$extensions = implode(', ', get_loaded_extensions());
$keys = array('bcmath', 'intl', 'gd', 'sockets', 'openssl', 'mbstring', 'curl');
$keys = array('bcmath', 'intl', 'gd', 'openssl', 'mbstring', 'curl');
$pattern = '/';
foreach($keys as $key)
{