Hi, have a report type grid with a SQL:
select
fieldA
f_get_ternombre(MyCode, “N”) as Name_client,
FiledC
from my table
where …
This report worked fine in version 8.0, now with the new verasion i got this error:
Parse error: syntax error, unexpected ‘N’ (T_STRING), expecting ‘]’ in C:\Program Files (x86)\NetMake\v8\wwwroot\scriptcase\app\PosMS\rpt_grid_pagos_listado\rpt_grid_pagos_listado_grid.class.php on line 221
If i edit the file .php, i can see that SC changes the " doubles by ’ single quotes
This is The line 221:
$this->Cmps_ord_def[‘f_get_ternombre(MyCode,‘N’)’] = “”;
I think there is a conflict with single quotes.
How can i solver it?