diff options
author | kiko%async.com.br <> | 2003-09-27 08:47:07 +0200 |
---|---|---|
committer | kiko%async.com.br <> | 2003-09-27 08:47:07 +0200 |
commit | 86559d4282d5dfaceab273ac2faf42dbcca8226b (patch) | |
tree | cbc887a7274b342df5c0d8ea1e369fc7568413f1 /editproducts.cgi | |
parent | 58cee6fc901915d1f79e4fbeb1840e6a3421fc0d (diff) | |
download | bugzilla-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 'editproducts.cgi')
-rwxr-xr-x | editproducts.cgi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/editproducts.cgi b/editproducts.cgi index 55089d9ae..1782a74b8 100755 --- a/editproducts.cgi +++ b/editproducts.cgi @@ -433,7 +433,9 @@ if ($action eq 'new') { unlink "data/versioncache"; print "OK, done.<p>\n"; - PutTrailer($localtrailer, "<a href=\"editcomponents.cgi?action=add&product=" . url_quote($product) . "\">add</a> components to this new product."); + PutTrailer($localtrailer, + "<a href=\"editcomponents.cgi?action=add&product=" . + url_quote($product) . "\">add</a> components to this new product"); exit; } |