Skip to content

Commit

Permalink
Do not filter out clusters that have the same name as the grid in meta
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafael Fonseca committed Nov 21, 2014
1 parent 567e069 commit 2164f3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion header.php
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ function make_node_menu($self,
$node_menu .= "<option value=\"\">--Choose a Source\n";
ksort($grid);
foreach ($grid as $k => $v) {
if ($k == $self) continue;
if ($k == $self and $context != 'meta') continue;
if (isset($v['GRID']) and $v['GRID']) {
$url = $v['AUTHORITY'];
$node_menu .="<option value=\"$url\">$k ${conf['meta_designator']}\n";
Expand Down

0 comments on commit 2164f3f

Please sign in to comment.