The places hierarchical display/selector gets stuck (see image).
It seems the front-end and controller code generate an unquoted `rank` that recent versions of mysql reject with an error, which in turn causes js indigestion.
In case it helps, injecting
if ($vs_field == 'rank') { $vs_field = '`rank`'; }
as line 336 of app/lib/BaseFindEngine.php (right before the SQL gets generated) "solves" the issue...
mysql 8
Thanks. This is fixed.
Thank you