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
63524b8e
Commit
63524b8e
authored
Jul 14, 2014
by
Till Brehm
Browse files
Changed include statement in soap handler.
parent
e3133e84
Changes
1
Show whitespace changes
Inline
Side-by-side
interface/lib/classes/soap_handler.inc.php
View file @
63524b8e
...
...
@@ -49,7 +49,7 @@ class ISPConfigSoapHandler {
$name
=
substr
(
$f
,
0
,
strpos
(
$f
,
'.'
));
include
$dir
.
'/'
.
$f
;
include
_once
$dir
.
'/'
.
$f
;
$class_name
=
'remoting_'
.
$name
;
if
(
class_exists
(
$class_name
,
false
))
{
$this
->
classes
[
$class_name
]
=
new
$class_name
();
...
...
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