Skip to content

Commit

Permalink
Two newlines before the URL breaks linking even in the default templa…
Browse files Browse the repository at this point in the history
…te where this value is used as the url parameter.

The newlines get changed to <br />'s and that stuffed into the param of an href.  A URL really should just be a URL.
Or a URI.  Or one of those things.
  • Loading branch information
scottwalters committed Sep 8, 2011
1 parent d721816 commit e2f9577
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/WebGUI/Workflow/Activity/NotifyAboutVersionTag.pm
Expand Up @@ -101,7 +101,7 @@ sub execute {
if ($versionTag->getAssetCount) {
# if there's only one asset in the tag, we might as well give them a direct link to it
my $asset = $versionTag->getAssets->[0];
$urlOfSingleAsset = "\n\n".$self->session->url->getSiteURL().$asset->getUrl("func=view;revision=".$asset->get("revisionDate"));
$urlOfSingleAsset = $self->session->url->getSiteURL().$asset->getUrl("func=view;revision=".$asset->get("revisionDate"));
}
my $var = {
message => $self->get('message'),
Expand Down

0 comments on commit e2f9577

Please sign in to comment.