From fdabd380c4af67ecd49d3c94283cbcd0c8bdc295 Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Sun, 17 Jan 2021 15:48:53 +0100 Subject: [PATCH] Fix installing HTTP extension with PHP 7.x Test: http --- install-php-extensions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install-php-extensions b/install-php-extensions index 4975516..58a3ddb 100755 --- a/install-php-extensions +++ b/install-php-extensions @@ -1492,6 +1492,8 @@ installRemoteModule() { if test -z "$installRemoteModule_version"; then if test $PHP_MAJMIN_VERSION -le 506; then installRemoteModule_version=2.6.0 + elif test $PHP_MAJMIN_VERSION -le 704; then + installRemoteModule_version=3.2.4 fi fi if test $PHP_MAJMIN_VERSION -ge 700; then