diff options
author | lpsolit%gmail.com <> | 2007-11-12 04:03:16 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2007-11-12 04:03:16 +0000 |
commit | d5adbc109d44481c9c4b7ba6429cbbc35487486e (patch) | |
tree | 48ba9a583661541867efc1d736fab8bede2c8994 /enter_bug.cgi | |
parent | Part 3 of bug 182083: add Help for more admin pages - Patch by me, r=Colin (diff) | |
download | bugzilla-d5adbc109d44481c9c4b7ba6429cbbc35487486e.tar.gz bugzilla-d5adbc109d44481c9c4b7ba6429cbbc35487486e.tar.bz2 bugzilla-d5adbc109d44481c9c4b7ba6429cbbc35487486e.zip |
Part 4 of bug 182083: add Help for non-admin pages - Patch by me, r=Colin
Diffstat (limited to 'enter_bug.cgi')
-rwxr-xr-x | enter_bug.cgi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/enter_bug.cgi b/enter_bug.cgi index dc2680473..cce5a431e 100755 --- a/enter_bug.cgi +++ b/enter_bug.cgi @@ -61,6 +61,9 @@ my $dbh = Bugzilla->dbh; my $template = Bugzilla->template; my $vars = {}; +# All pages point to the same part of the documentation. +$vars->{'doc_section'} = 'bugreports.html'; + my $product_name = trim($cgi->param('product') || ''); # Will contain the product object the bug is created in. my $product; |