From 2fde3cb746ad0f361344d9a99addfc249e75d898 Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Mon, 12 Jan 2015 18:32:18 +0000 Subject: [PATCH] Fix the menu item edit group list so that it shows the global groups. --- core/menu/menu_item_edit.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/menu/menu_item_edit.php b/core/menu/menu_item_edit.php index 615523b2c6..579c58d118 100644 --- a/core/menu/menu_item_edit.php +++ b/core/menu/menu_item_edit.php @@ -17,7 +17,7 @@ The Initial Developer of the Original Code is Mark J Crane - Portions created by the Initial Developer are Copyright (C) 2008-2012 + Portions created by the Initial Developer are Copyright (C) 2008-2014 the Initial Developer. All Rights Reserved. Contributor(s): @@ -418,7 +418,7 @@ else { echo "
\n"; $sql = "SELECT * FROM v_groups "; - $sql .= "where domain_uuid = '".$domain_uuid."' "; + $sql .= "where (domain_uuid = '".$domain_uuid."' or domain_uuid is null "; $sql .= "order by group_name asc "; $prep_statement = $db->prepare(check_sql($sql)); $prep_statement->execute();