diff options
author | wurblzap%gmail.com <> | 2005-11-08 01:14:01 +0000 |
---|---|---|
committer | wurblzap%gmail.com <> | 2005-11-08 01:14:01 +0000 |
commit | cd1c8884f225c610a3f35aae476b846c09ec8520 (patch) | |
tree | 9b708716ea3997c4ddb241b369c64a98e6cc355c /template | |
parent | Bug 313432: Comments don't word-wrap in the "here's your comment for cut-n-pa... (diff) | |
download | bugzilla-cd1c8884f225c610a3f35aae476b846c09ec8520.tar.gz bugzilla-cd1c8884f225c610a3f35aae476b846c09ec8520.tar.bz2 bugzilla-cd1c8884f225c610a3f35aae476b846c09ec8520.zip |
Bug 314680: Dependecy graph link rel entry should depend on webdotbase param
Patch by Marc Schumann <wurblzap@gmail.com>
r=LpSolit, a=justdave
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/global/site-navigation.html.tmpl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/template/en/default/global/site-navigation.html.tmpl b/template/en/default/global/site-navigation.html.tmpl index 66c96a137..32c56549f 100644 --- a/template/en/default/global/site-navigation.html.tmpl +++ b/template/en/default/global/site-navigation.html.tmpl @@ -62,8 +62,10 @@ [% IF bug %] <link rel="Show" title="Dependency Tree" href="showdependencytree.cgi?id=[% bug.bug_id %]"> - <link rel="Show" title="Dependency Graph" - href="showdependencygraph.cgi?id=[% bug.bug_id %]"> + [% IF Param('webdotbase') %] + <link rel="Show" title="Dependency Graph" + href="showdependencygraph.cgi?id=[% bug.bug_id %]"> + [% END %] [% IF use_votes %] <link rel="Show" title="Votes ([% bug.votes %])" |