I just made a few minor stylistic changes to a project that has been up for 2 months composed with PHPRunner 7.1 20946.
I opened this same project today in build 21342 and made a few stylistic changes and uploaded.
Now an online View fails with a msqli error. Apparently this value cannot be returned now and it is used in my where query.
global $dal;
$myid=$data["id"];
This has been inside my Custom Query for my index field on the List page of Calendar Records. The "id" field has not changed its characteristics. Hundreds of rows should be showing up as always. This is where it now fails.... the query no longer completes with a lookup to the value of this row's "id".
$myid=$data["id"];
$strSQLExists = "SELECT calcalendarid from reports where calcalendarid=".$myid."";
Yesterday this worked flawlessly. I know the phpfunctions.php file is involved because I tried to make modifications to see if I could retrieve this LIST field data and it is the phpfunctions.php file that is uploaded again.