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
2d55adc5
Commit
2d55adc5
authored
Aug 07, 2017
by
Marius Burkard
Browse files
- added missing return code to server_config_set
parent
d8526220
Changes
1
Hide whitespace changes
Inline
Side-by-side
interface/lib/classes/remote.d/server.inc.php
View file @
2d55adc5
...
...
@@ -163,7 +163,7 @@ class remoting_server extends remoting {
$server_config_array
=
$app
->
getconf
->
get_server_config
(
$server_id
);
$server_config_array
[
$section
][
$key
]
=
$value
;
$server_config_str
=
$app
->
ini_parser
->
get_ini_string
(
$server_config_array
);
$app
->
db
->
datalogUpdate
(
'server'
,
array
(
"config"
=>
$server_config_str
),
'server_id'
,
$server_id
);
return
$app
->
db
->
datalogUpdate
(
'server'
,
array
(
"config"
=>
$server_config_str
),
'server_id'
,
$server_id
);
}
else
{
throw
new
SoapFault
(
'invalid_function_parameter'
,
'Invalid function parameter.'
);
return
false
;
...
...
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