mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-24 22:34:24 +02:00
Don't use deprecated functions
This commit is contained in:
parent
f8ac2c8b40
commit
e4a42c5cc9
@ -95,7 +95,7 @@ abstract class NavigationItemContainer
|
||||
public function __call($name, $arguments)
|
||||
{
|
||||
if (method_exists($this, $name)) {
|
||||
return call_user_method_array($name, $this, $arguments);
|
||||
return call_user_func(array($this, $name), $this, $arguments);
|
||||
}
|
||||
|
||||
$type = substr($name, 0, 3);
|
||||
|
Loading…
x
Reference in New Issue
Block a user