Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2019-12-01 11:52:10 +0300
committerAleksander Machniak <alec@alec.pl>2019-12-01 11:52:10 +0300
commit847193065249c06004574ed873195f5c58334c91 (patch)
treecc8d8b63828e662f0d3e563c60c58580852b26a6 /installer
parent5b253fb4986b7ffc4646211d2bda53c184d1c6d8 (diff)
Add 'filter' to required extensions
Diffstat (limited to 'installer')
-rw-r--r--installer/check.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/installer/check.php b/installer/check.php
index 2500e8cba..e1fa76297 100644
--- a/installer/check.php
+++ b/installer/check.php
@@ -31,6 +31,7 @@ $required_php_exts = array(
'PDO' => 'PDO',
'Multibyte' => 'mbstring',
'OpenSSL' => 'openssl',
+ 'Filter' => 'filter',
'Ctype' => 'ctype',
);
@@ -88,6 +89,7 @@ $source_urls = array(
'GD' => 'http://www.php.net/manual/en/book.image.php',
'Imagick' => 'http://www.php.net/manual/en/book.imagick.php',
'Zip' => 'http://www.php.net/manual/en/book.zip.php',
+ 'Filter' => 'http://www.php.net/manual/en/book.filter.php',
'Ctype' => 'http://www.php.net/manual/en/book.ctype.php',
'pdo_mysql' => 'http://www.php.net/manual/en/ref.pdo-mysql.php',
'pdo_pgsql' => 'http://www.php.net/manual/en/ref.pdo-pgsql.php',