summaryrefslogtreecommitdiffstats
path: root/editcomponents.cgi
diff options
context:
space:
mode:
authorkiko%async.com.br <>2003-09-27 08:47:07 +0200
committerkiko%async.com.br <>2003-09-27 08:47:07 +0200
commit86559d4282d5dfaceab273ac2faf42dbcca8226b (patch)
treecbc887a7274b342df5c0d8ea1e369fc7568413f1 /editcomponents.cgi
parent58cee6fc901915d1f79e4fbeb1840e6a3421fc0d (diff)
downloadbugzilla-86559d4282d5dfaceab273ac2faf42dbcca8226b.tar.gz
bugzilla-86559d4282d5dfaceab273ac2faf42dbcca8226b.tar.xz
Bug 65316: Typos on edit*.cgi. Change use of PutTrailer() (and the
default output, in certain cases) in the edit pages. Patch by Vlad Dascalu <jocuri@softhome.net>, r=kiko, a=justdave
Diffstat (limited to 'editcomponents.cgi')
-rwxr-xr-xeditcomponents.cgi13
1 files changed, 11 insertions, 2 deletions
diff --git a/editcomponents.cgi b/editcomponents.cgi
index 018c89cdf..539da47a5 100755
--- a/editcomponents.cgi
+++ b/editcomponents.cgi
@@ -151,6 +151,10 @@ sub EmitFormElements ($$$$$)
#
# Displays a text like "a.", "a or b.", "a, b or c.", "a, b, c or d."
+#
+# XXX This implementation of PutTrailer outputs a default link back to the
+# query page instead of the index, which is inconsistent with other
+# PutTrailer() implementations.
#
sub PutTrailer (@)
@@ -475,9 +479,14 @@ if ($action eq 'new') {
print "OK, done.<p>\n";
if ($product) {
- PutTrailer("<A HREF=\"editcomponents.cgi?product=" . url_quote($product) . "\">edit</A> more components or <A HREF=\"editcomponents.cgi?product=". url_quote($product) . "&action=add\">Add</A> another component");
+ PutTrailer("<a href=\"editcomponents.cgi?product=" .
+ url_quote($product) . "\">edit</a> more components",
+ "<a href=\"editcomponents.cgi?product=". url_quote($product) .
+ "&action=add\">add</a> another component");
} else {
- PutTrailer("<A HREF=\"editcomponents.cgi\">edit</A> more components or <A HREF=\"editcomponents.cgi?action=add\">Add</A> another component");
+ PutTrailer("<a href=\"editcomponents.cgi\">edit</a> more components",
+ "<a href=\"editcomponents.cgi?action=add\">add</a>" .
+ "another component");
}
exit;
}