summaryrefslogtreecommitdiffstats
path: root/query.cgi
diff options
context:
space:
mode:
authorcyeh%bluemartini.com <>2001-02-16 10:22:38 +0100
committercyeh%bluemartini.com <>2001-02-16 10:22:38 +0100
commitf422f4dd4208a1bc90e054e18919a08ce1f47271 (patch)
tree83e4d4bb242e83abea7c1ef7db8946db57c26f74 /query.cgi
parentb567f4256283d1865d2517bde2293da0365e1a24 (diff)
downloadbugzilla-f422f4dd4208a1bc90e054e18919a08ce1f47271.tar.gz
bugzilla-f422f4dd4208a1bc90e054e18919a08ce1f47271.tar.xz
fix for 65396:
Remember This Query should give option to add to page footer patch submitted by st.n@gmx.net (Stephan Niemz)
Diffstat (limited to 'query.cgi')
-rwxr-xr-xquery.cgi10
1 files changed, 6 insertions, 4 deletions
diff --git a/query.cgi b/query.cgi
index 65a4cb29a..032739d6d 100755
--- a/query.cgi
+++ b/query.cgi
@@ -887,19 +887,21 @@ if (!$userid) {
</tr></table>};
}
- print "
+ print qq{
<INPUT TYPE=radio NAME=cmdtype VALUE=asdefault> Remember this as the default query
<BR>
<INPUT TYPE=radio NAME=cmdtype VALUE=asnamed> Remember this query, and name it:
<INPUT TYPE=text NAME=newqueryname>
+<br>&nbsp;&nbsp;&nbsp;&nbsp;<INPUT TYPE="checkbox" NAME="tofooter" VALUE="1">
+ and put it in my page footer.
<BR>
-"
+ };
}
-print "
+print qq{
<NOBR><B>Sort By:</B>
<SELECT NAME=\"order\">
-";
+};
my $deforder = "'Importance'";
my @orders = ('Bug Number', $deforder, 'Assignee');