Skip to content
Snippets Groups Projects
Commit 63524b8e authored by Till Brehm's avatar Till Brehm
Browse files

Changed include statement in soap handler.

parent e3133e84
No related branches found
No related tags found
No related merge requests found
......@@ -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();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment