Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
fusiondirectory
fusiondirectory
Commits
45e8d5ac
Commit
45e8d5ac
authored
Dec 24, 2016
by
Benoit Mortier
Browse files
Fixes:
#5268
Missing check for package php-filter
Signed-off-by:
Benoit Mortier
<
benoit.mortier@opensides.be
>
parent
c011c829
Changes
1
Hide whitespace changes
Inline
Side-by-side
setup/class_setupStep_Checks.inc
View file @
45e8d5ac
...
...
@@ -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."
);
...
...
tbp
@tbp
mentioned in issue
#1672 (closed)
·
Sep 02, 2017
mentioned in issue
#1672 (closed)
mentioned in issue #1672
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment