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:
parent
d7218166bb
commit
e2f95778ce
1 changed files with 1 additions and 1 deletions
|
|
@ -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'),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue