Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
003f85e0
Commit
003f85e0
authored
Mar 30, 2003
by
timeless%mozdev.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 197689 Missing Query - The query named $name seems to no longer exist.
r=bbaetz a=justdave
parent
e8c87576
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
buglist.cgi
buglist.cgi
+1
-1
user-error.html.tmpl
template/en/default/global/user-error.html.tmpl
+1
-1
No files found.
buglist.cgi
View file @
003f85e0
...
...
@@ -168,7 +168,7 @@ sub LookupNamedQuery {
my
$qname
=
SqlQuote
(
$name
);
SendSQL
(
"SELECT query FROM namedqueries WHERE userid = $userid AND name = $qname"
);
my
$result
=
FetchOneColumn
();
$result
||
ThrowUserError
(
"missing_query"
,
{
'queryname'
=>
'$name'
});
$result
||
ThrowUserError
(
"missing_query"
,
{
'queryname'
=>
$name
});
return
$result
;
}
...
...
template/en/default/global/user-error.html.tmpl
View file @
003f85e0
...
...
@@ -362,7 +362,7 @@
[% ELSIF error == "missing_query" %]
[% title = "Missing Query" %]
The query named <em>[% queryname FILTER html %]</em>
seems to no longer
The query named <em>[% queryname FILTER html %]</em>
does not
exist.
[% ELSIF error == "need_component" %]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment