Two newlines before the URL breaks linking even in the default template 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.
This commit is contained in:
Scott Walters 2011-09-08 14:32:22 -04:00
parent d7218166bb
commit e2f95778ce

View file

@ -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'),