On a system with multiple contrib modules when using php 8.5.5 the following is seen:
Deprecated function: Non-canonical cast (boolean) is deprecated, use the (bool) cast instead in include_once() (line 1600 of core/includes/bootstrap.inc).
This appears to be related to og_ui/og_ui.module
$role = og_role_load($rid);
return (boolean) $role;
Changing it to return (bool) $role; fixes the issue.
I'll provide a PR, shortly.
On a system with multiple contrib modules when using php 8.5.5 the following is seen:
This appears to be related to og_ui/og_ui.module
Changing it to
return (bool) $role;fixes the issue.I'll provide a PR, shortly.