Sander Weyens - 2007-07-20 22:45:02 -
In reply to message 1 from cgrezi
This is because you are using php5, you can fix this by casting the values that cause an error to array.
Or, apply this:
FIND:
//at line 60
$this -> routs[$y] = array_merge($this -> routs[$y], $this -> s[$i]);
REPLACE WITH:
$this -> routs[$y] = array_merge((array)$this -> routs[$y], (array)$this -> s[$i]);
FIND:
//at line 68
$this -> routs[$y] = array_merge($this -> routs[$y], $sum);
REPLACE WITH
$this -> routs[$y] = array_merge((array)$this -> routs[$y], $sum);