summaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authorguy.pyrzak%gmail.com <>2008-09-05 04:39:42 +0200
committerguy.pyrzak%gmail.com <>2008-09-05 04:39:42 +0200
commite92979fa84a704f14d59b77dddfb3454245e26bd (patch)
tree712a2b6e64bd109a8708f00d46a739c69e9f89c8 /template
parentfb64880cc53c80af35c00dd2791e08fa2d897578 (diff)
downloadbugzilla-e92979fa84a704f14d59b77dddfb3454245e26bd.tar.gz
bugzilla-e92979fa84a704f14d59b77dddfb3454245e26bd.tar.xz
Bug 452906 - Long URLs smash the right column width
Patch By Guy Pyrzak <guy.pyrzak@gmail.com>, r=mkanat, a=mkanat
Diffstat (limited to 'template')
-rw-r--r--template/en/default/bug/edit.html.tmpl5
1 files changed, 3 insertions, 2 deletions
diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl
index 293586155..9dc7cba00 100644
--- a/template/en/default/bug/edit.html.tmpl
+++ b/template/en/default/bug/edit.html.tmpl
@@ -586,8 +586,9 @@
<span id="bz_url_edit_container" class="bz_default_hidden">
[% IF bug.bug_file_loc
AND NOT bug.bug_file_loc.match("^(javascript|data)") %]
- <a href="[% bug.bug_file_loc FILTER html %]" target="_blank">
- [% bug.bug_file_loc FILTER html%]</a>
+ <a href="[% bug.bug_file_loc FILTER html %]" target="_blank"
+ title="[% bug.bug_file_loc FILTER html %]">
+ [% bug.bug_file_loc FILTER truncate(40) FILTER html %]</a>
[% ELSE %]
[% bug.bug_file_loc FILTER html %]
[% END %]