ManiaLive 2.5 Bug?
Posted: 21 Dec 2012, 12:23
Hi,
The new manialive 2.5 failed at lunch on my systems.
I just noticed those two functions are not declared as it should :
I fixed the problem by re declaring :
Was I the only one with the problem? Was it the good fix? Manialive seems fine to me after this fix.
Thanks.
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.