summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbuglist.cgi2
-rw-r--r--template/en/default/global/user-error.html.tmpl2
2 files changed, 2 insertions, 2 deletions
diff --git a/buglist.cgi b/buglist.cgi
index ff12dba35..4acd5d55e 100755
--- a/buglist.cgi
+++ b/buglist.cgi
@@ -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;
}
diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl
index 11899fe70..a89d029eb 100644
--- a/template/en/default/global/user-error.html.tmpl
+++ b/template/en/default/global/user-error.html.tmpl
@@ -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" %]