Skip to content

Commit

Permalink
Separate multiple select actions with <br /> instead of q{ }. Bug # 1…
Browse files Browse the repository at this point in the history
…222.
  • Loading branch information
theory committed Jun 20, 2006
1 parent 6b5f1f9 commit 4cdde1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions comp/widgets/listManager/listManager.mc
Original file line number Diff line number Diff line change
Expand Up @@ -628,10 +628,10 @@ my $build_table_data = sub {
# XXX Actions are 0-based for some reason. Dunno why.
push @{$actions->[$row - 1]}, @prf if @prf;

## Add the select items if any
# Add the select items if any
if (@sel) {
$sel_cols = 1;
push @{$actions->[$row - 1]}, join q{ }, @sel;
push @{$actions->[$row - 1]}, join '<br />', @sel;
}

$row++;
Expand Down

0 comments on commit 4cdde1f

Please sign in to comment.