Anons - get str_replace error

Created on 6 February 2025, about 2 months ago

Hey hey,

So when you're using incognito (anonymous users) - they get an error.

TypeError: str_replace(): Argument #2 ($replace) must be of type array|string, int given in str_replace() (regel 230 van /var/www/html/docroot/modules/contrib/ai_search_block/src/AiSearchBlockHelper.php).

Why - it happens when it tries to replace with a value of 0 (role ID), and it treats it as int (and the str_replace wants strings or array).

$message = str_replace('[' . $key . ']', is_null($replace) ? '' : $replace, $message);

should be
$message = str_replace('[' . $key . ']', is_null($replace) ? '' : (string) $replace, $message);

🐛 Bug report
Status

Active

Version

1.0

Component

Code

Created by

🇪🇸Spain Nikro Benalmadena, Malaga

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Production build 0.71.5 2024