From 262414646de808b98672490a44c040aa5f080a22 Mon Sep 17 00:00:00 2001 From: izmeez <6208775+izmeez@users.noreply.github.com> Date: Wed, 15 Apr 2026 00:49:09 +0000 Subject: [PATCH] Fixed php 8.5 deprecated non-canonical cast (boolean). --- og_ui/og_ui.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/og_ui/og_ui.module b/og_ui/og_ui.module index 302ecf71..67d281fd 100644 --- a/og_ui/og_ui.module +++ b/og_ui/og_ui.module @@ -435,7 +435,7 @@ function og_ui_access_bundle_role($rid) { } $role = og_role_load($rid); - return (boolean) $role; + return (bool) $role; } /**