Page 1 of 1

Default Lookup Value 23.11 and php 8.0

Posted: 2023-05-03 08:46
by mdannatt
So i upgraded from 22.x to 23.11 in the hope that the bug, in which default lookup values were not displayed in PHP8.0 (and reported on this forum), STILL hasn't been fixed. I am so disappointed. Why am I paying for "upgrades" that don't fix the issues??

Re: Default Lookup Value 23.11 and php 8.0

Posted: 2023-06-24 20:08
by a.gneady
Sorry for the late reply. The fix for this issue is to open the generated ajax_combo.php in an editor, find this line:

Code: Select all

'more' => (@db_num_rows($res) >= $results_per_page),
and change it to:

Code: Select all

'more' => ($res && db_num_rows($res) >= $results_per_page),
This fix will be included in AppGini 23.13 within a few days.