Hi,
Thanks for fixing HTML Filtering that was causing us trouble ...
I've found another J6 recommandation for Database about "castAsChar"
check : grep -RInF "castAsChar("
Please check file :
./components/com_jevents/helpers/category.php:73: $c_id = $query->castAsChar('c.id');
Example fix :
Replace :
$a_id = $query->castAsChar('a.id');
by
$a_id = $query->castAs('CHAR', 'a.id');
(Joomla\Database\Mysqli\MysqliQuery::castAsChar())
MySQLi, method doesn’t exist in Joomla 6,
Best regards,
Gil