diff options
author | Byron Jones <glob@mozilla.com> | 2016-01-06 16:13:27 +0100 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2016-01-06 16:13:27 +0100 |
commit | 93919407f0e7e7a638d9e3c36640bd2f78d77367 (patch) | |
tree | 86aabc057e02a43e9f91ca23c66d6bd51c0cbd8f /extensions/BugModal | |
parent | ead96aee04bbc8a470e572948190d8781ebf5290 (diff) | |
download | bugzilla-93919407f0e7e7a638d9e3c36640bd2f78d77367.tar.gz bugzilla-93919407f0e7e7a638d9e3c36640bd2f78d77367.tar.xz |
Bug 1237188 - add support for servicenow to the 'see also' field
Diffstat (limited to 'extensions/BugModal')
-rw-r--r-- | extensions/BugModal/template/en/default/bug_modal/field.html.tmpl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/extensions/BugModal/template/en/default/bug_modal/field.html.tmpl b/extensions/BugModal/template/en/default/bug_modal/field.html.tmpl index b31052d36..0fe143919 100644 --- a/extensions/BugModal/template/en/default/bug_modal/field.html.tmpl +++ b/extensions/BugModal/template/en/default/bug_modal/field.html.tmpl @@ -308,7 +308,9 @@ END; [% IF url.isa('Bugzilla::BugUrl::Bugzilla::Local') %] [% url.target_bug_id FILTER bug_link(url.target_bug_id, use_alias => 1) FILTER none %] [% ELSE %] - <a href="[% url.name FILTER html %]">[% url.name FILTER html %]</a> + <a href="[% url.name FILTER html %]" + title="[% url.name FILTER truncate(256) FILTER html %]" + >[% url.name FILTER truncate(40) FILTER html %]</a> [% END %] [% IF edit %] <label> |