Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISPConfig
ISPConfig 3
Commits
5f22050e
Commit
5f22050e
authored
Dec 28, 2016
by
Till Brehm
Browse files
Changed $config from empty string to empty array.
parent
46777f34
Changes
1
Hide whitespace changes
Inline
Side-by-side
install/lib/install.lib.php
View file @
5f22050e
...
...
@@ -618,7 +618,7 @@ function edit_xinetd_conf($service){
//* Converts a ini string to array
function
ini_to_array
(
$ini
)
{
$config
=
''
;
$config
=
array
()
;
$ini
=
str_replace
(
"
\r\n
"
,
"
\n
"
,
$ini
);
$lines
=
explode
(
"
\n
"
,
$ini
);
foreach
(
$lines
as
$line
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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