From f5d2d2ff794fc5b4009626548042347553f46b3f Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Sat, 29 Aug 2015 22:07:50 +0200 Subject: [PATCH] Installer: Check for openssl extension Closes #296. --- src/Install/Actions/IndexAction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Install/Actions/IndexAction.php b/src/Install/Actions/IndexAction.php index 3bed18d22..982d18157 100644 --- a/src/Install/Actions/IndexAction.php +++ b/src/Install/Actions/IndexAction.php @@ -49,7 +49,7 @@ class IndexAction extends HtmlAction ]; } - foreach (['mbstring', 'pdo_mysql', 'json', 'gd', 'dom'] as $extension) { + foreach (['mbstring', 'pdo_mysql', 'openssl', 'json', 'gd', 'dom'] as $extension) { if (! extension_loaded($extension)) { $errors[] = [ 'message' => 'The '.$extension.' extension is required.'