The new manialive 2.5 failed at lunch on my systems.
I just noticed those two functions are not declared as it should :
Code: Select all
function getHalign()
{
return $this->halign;
}
function getValign()
{
return $this->valign;
}
Code: Select all
function getHalign($default = null)
{
return $this->halign ? : $default;
}
function getValign($default = null)
{
return $this->Valign ? : $default;
}
Thanks.