diff options
author | terry%mozilla.org <> | 2000-01-05 04:54:15 +0100 |
---|---|---|
committer | terry%mozilla.org <> | 2000-01-05 04:54:15 +0100 |
commit | 82e2d62ea27663dbc6fd0b3b7077c10f733b61dc (patch) | |
tree | 88216fd787f824ebac5894d84cbb0573e9122542 | |
parent | c7f9682ddede66f1d1e5ba9a877a7c17dfd02788 (diff) | |
download | bugzilla-82e2d62ea27663dbc6fd0b3b7077c10f733b61dc.tar.gz bugzilla-82e2d62ea27663dbc6fd0b3b7077c10f733b61dc.tar.xz |
When no bugs are found, give links to make another query or to submit
a new bug.
-rwxr-xr-x | buglist.cgi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/buglist.cgi b/buglist.cgi index 25343bf6e..403a689dd 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -668,6 +668,9 @@ if ($count == 0) { # So, when you query for a list of bugs, and it gets no results, you # can think of this as a friendly reminder. Of *course* there are bugs # matching your query, they just aren't in the bugsystem yet... + + print qq{<p><A HREF="query.cgi">Query Page</A>\n}; + print qq{ <A HREF="enter_bug.cgi">Enter New Bug</A>\n}; } elsif ($count == 1) { print "One bug found.\n"; } else { |