Commit e89ac766 authored by Benoit Mortier's avatar Benoit Mortier
Browse files

Fixes: #5268 Missing check for package php-filter


Signed-off-by: default avatarBenoit Mortier <benoit.mortier@opensides.be>
Showing with 8 additions and 0 deletions
+8 -0
......@@ -103,6 +103,14 @@ class Step_Checks extends setupStep
$M = TRUE;
$basic_checks[] = array('NAME' => $N , 'DESC' => $D , 'RESULT' => $R , 'SOLUTION' => $S , 'MUST' => $M );
/* Check for filter support */
$N = msgPool::checkingFor('filter');
$D = _('FusionDirectory requires this module to filters a variable with a specified filter.');
$S = msgPool::installPhpModule('filter');
$R = is_callable('filter_var');
$M = TRUE;
$basic_checks[] = array('NAME' => $N , 'DESC' => $D , 'RESULT' => $R , 'SOLUTION' => $S , 'MUST' => $M );
/* Check for iconv */
$N = msgPool::checkingFor("iconv");
$D = _("FusionDirectory requires this module for the samba integration.");
......
  • bmortier @bmortier

    mentioned in issue #1672 (closed)

    By tbp on 2017-09-02T15:34:25 (imported from GitLab)

    ·

    mentioned in issue #1672 (closed)

    By tbp on 2017-09-02T15:34:25 (imported from GitLab)

    Toggle commit list
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment