Browse Source

Fix the menu item edit group list so that it shows the global groups.

Mark Crane 10 years ago
parent
commit
64e5c73065
1 changed files with 2 additions and 2 deletions
  1. 2 2
      core/menu/menu_item_edit.php

+ 2 - 2
core/menu/menu_item_edit.php

@@ -17,7 +17,7 @@
 
 	The Initial Developer of the Original Code is
 	Mark J Crane <[email protected]>
-	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 "<br />\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();