From 110fe5a8369b4852c5f4c6545f1d2eb9758e9822 Mon Sep 17 00:00:00 2001 From: "terry%netscape.com" Date: Tue, 1 Sep 1998 21:01:44 +0000 Subject: [PATCH] Patch inspired by Sam Ziegler -- deal better with product names that have spaces or other weird stuff in them. git-svn-id: svn://10.0.0.236/trunk@9038 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/enter_bug.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/webtools/bugzilla/enter_bug.cgi b/mozilla/webtools/bugzilla/enter_bug.cgi index 385714f5459..3bd675c50ec 100755 --- a/mozilla/webtools/bugzilla/enter_bug.cgi +++ b/mozilla/webtools/bugzilla/enter_bug.cgi @@ -30,7 +30,7 @@ if {![info exists FORM(product)]} { puts "

First, you must pick a product on which to enter a bug.

" foreach p [lsort [array names versions]] { - puts "$p
" + puts "$p
" } exit }