Korea, Republic of
|
Edited by ionobgy at 2012-3-23 11:07
At source/include/space/space_notify.php line 105
If I change " $value['note'] = lang('notification',$template,$notevars);" to "//$value['note'] = lang('notification',$template,$notevars);" then the recent revision ML notification is normal view But older version ML notification is corrupted.
But I don't modify space_notify.php, the state is reverse.
Therefore, my temporary bad solve is below:
$value['note'] = lang('notification',$template,$notevars);
====>
$tmp=lang('notification',$template,$notevars);
if(gettype($tmp)!="array") $value['note']=$tmp;
|
|