Skip to content

Commit

Permalink
Item13364: Don't embed checkbox inside URL
Browse files Browse the repository at this point in the history
  • Loading branch information
gac410 committed Apr 19, 2015
1 parent eee150d commit c603a28
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/lib/Foswiki/Configure/Wizards/ExploreExtensions.pm
Expand Up @@ -367,9 +367,10 @@ CHECKBOXES
. " name='$ext->{name}'"
. " value='$ext->{repository}'/> ";

$thd .= "[[$ext->{data}$ext->{name}][";
$thd .= $ext->{name} || 'Unknown';
$thd .= ']]';
$thd =~ s/!(\w+)/$1/g; # remove ! escape syntax from text
$thd = "[[$ext->{data}$ext->{name}][$thd]]";
$thd .= " <sup>[$ext->{repository}]</sup>"
if ( scalar(@consultedLocations) > 1 );

Expand Down

0 comments on commit c603a28

Please sign in to comment.