[eluser]Isuka[/eluser]
[quote author="xwero" date="1235415618"]It seems they fixed it in the latest version but in the version with the eval function you find following line at 450
Code:
$post .= ' = $array;';
Which should be
Code:
$post .= " = $array;"; /* or */ $post .= ' = '.$array.';';
[/quote]
Thanks xwero for this
EDIT :
I tried with both
Code:
$post .= " = $array;"; /* and */ $post .= ' = '.$array.';';
and now I can see the error. So the fix don't work but I know now the error come from this line

The best thing I can do is maybe to upgrade to 1.7.1.