diff options
author | wurblzap%gmail.com <> | 2005-11-08 02:14:01 +0100 |
---|---|---|
committer | wurblzap%gmail.com <> | 2005-11-08 02:14:01 +0100 |
commit | cd1c8884f225c610a3f35aae476b846c09ec8520 (patch) | |
tree | 9b708716ea3997c4ddb241b369c64a98e6cc355c /template/en | |
parent | efd65f18b86b1e1f350596ff4c767542e63255b4 (diff) | |
download | bugzilla-cd1c8884f225c610a3f35aae476b846c09ec8520.tar.gz bugzilla-cd1c8884f225c610a3f35aae476b846c09ec8520.tar.xz |
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/en')
-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 %])" |