From f79a34f3a134d4e0ab3ff8d4244ef3074aadbe8b Mon Sep 17 00:00:00 2001 From: Laryn Date: Thu, 29 Jan 2026 13:08:51 -0600 Subject: [PATCH] Fix conditional assignment for project type check --- commands/projects.bee.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/projects.bee.inc b/commands/projects.bee.inc index 487185e..14c01d3 100644 --- a/commands/projects.bee.inc +++ b/commands/projects.bee.inc @@ -204,7 +204,7 @@ function enable_bee_callback($arguments, $options) { $success = FALSE; // Get project type. - if (!$type = projects_bee_get_type($project)) { + if (!($type = projects_bee_get_type($project))) { bee_message(bt("Project '!name' could not be found.", array( '!name' => $project, )), 'error');