Closed
Bug 1499
Opened 26 years ago
Closed
Custom queries are not remembered.
Categories
(Bugzilla :: Bugzilla-General, defect, P1)
Tracking
()
VERIFIED
FIXED
Bugzilla old
People
(Reporter: leger, Assigned: terry)
Details
The details (from email from leger):
? - I have set up customized query twice now in Bugzilla, but they don't
seem to work once saved. I can manually get the info I need, but
Bugzilla does not seem to be remember. I get this error:
Can't locate object method "ProcessFormFields" via package
"bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&assigned_to=&reporter=&changedin=&short_desc=%5Ess%3A&short_desc_type=regexp&long_desc=&long_desc_type=substr&namedcmd=DevPrevBlockers&cmdtype=asnamed&newqueryname=DR1+Open&order=%22Importance%22&form_name=query"
at /opt/suitespot/docs/webtools/bugzilla/buglist.cgi line 66.
Updated•26 years ago
|
Status: NEW → ASSIGNED
Assignee | ||
Comment 1•26 years ago
|
||
I received mail from Ashley Clark <aclark@CS.UH.EDU> with a patch for this.
I have pasted his message below. I've applied his patch, and am
CC'ing him on this bug, and am closing the bug. Please REOPEN if it
doesn't seem fixed to you!
I fixed this bug on my system all it required was putting parentheses on
the line 66 of buglist.cgi
Attached is a diff.
Ashley Clark
2. diff (text/plain)
--- buglist.cgi~ Mon Dec 7 02:44:01 1998
+++ buglist.cgi Thu Dec 10 19:20:41 1998
@@ -63,7 +63,7 @@
CMD: for ($::FORM{'cmdtype'}) {
/^runnamed$/ && do {
$::buffer = $::COOKIE{"QUERY_" . $::FORM{"namedcmd"}};
- ProcessFormFields $::buffer;
+ ProcessFormFields($::buffer);
last CMD;
};
/^editnamed$/ && do {
Assignee | ||
Comment 2•26 years ago
|
||
I received mail from Ashley Clark <aclark@CS.UH.EDU> with a patch for this.
I have pasted the message below. I've applied this patch, and am closing
the bug. Please REOPEN if it doesn't seem fixed to you!
I fixed this bug on my system all it required was putting parentheses on
the line 66 of buglist.cgi
Attached is a diff.
Ashley Clark
2. diff (text/plain)
--- buglist.cgi~ Mon Dec 7 02:44:01 1998
+++ buglist.cgi Thu Dec 10 19:20:41 1998
@@ -63,7 +63,7 @@
CMD: for ($::FORM{'cmdtype'}) {
/^runnamed$/ && do {
$::buffer = $::COOKIE{"QUERY_" . $::FORM{"namedcmd"}};
- ProcessFormFields $::buffer;
+ ProcessFormFields($::buffer);
last CMD;
};
/^editnamed$/ && do {
Comment 6•23 years ago
|
||
Moving to Bugzilla product
Component: Bugzilla → Bugzilla-General
Product: Webtools → Bugzilla
QA Contact: matty
Target Milestone: --- → Bugzilla old
Version: other → unspecified
Updated•12 years ago
|
QA Contact: matty_is_a_geek → default-qa
You need to log in
before you can comment on or make changes to this bug.
Description
•