http://forum.maniaplanet.com/viewtopic. ... 954#p15895
meanwhile I also might have found an Error in ML. I had a crash with the error : PHP Fatal error: Nesting level too deep - recursive dependency
In libraries\ManiaLive\Gui\Windowing\ need to use !== and not != because you are comparing objects which gives :
Code: Select all
function onIsAdded(Container $target)
{
// echo "added " . get_class($this) . " \n";
$this->parent = $target;
if ($target instanceof WindowDisplayable)
{
if ($this->window !== $target->window)
$this->announceWindow($target->window);
}
elseif ($target instanceof Control)
{
if ($target->getWindow() != null
&& $target->getWindow() !== $this->window)
$this->announceWindow($target->getWindow());
}
}