Update CVS parsing for wiki generation.
diff --git a/org.eclipse.e4.builder/scripts/wiki-from-cvs.sh b/org.eclipse.e4.builder/scripts/wiki-from-cvs.sh
index cb0bdca..9e3c6c5 100755
--- a/org.eclipse.e4.builder/scripts/wiki-from-cvs.sh
+++ b/org.eclipse.e4.builder/scripts/wiki-from-cvs.sh
@@ -5,7 +5,7 @@
 F_TARGET="$1" ; shift
 F_SEARCH="$1" ; shift
 
-curl -o search.csv 'https://bugs.eclipse.org/bugs/buglist.cgi?bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&classification=Eclipse&component=IDE&component=UI&list_id=5935738&product=Platform&query_format=advanced&target_milestone='$F_SEARCH'&query_based_on=&columnlist=bug_id%2Ctarget_milestone%2Cassigned_to%2Cbug_status%2Cresolution%2Cshort_desc%2Cbug_severity&ctype=csv'
+curl -o search.csv 'https://bugs.eclipse.org/bugs/buglist.cgi?classification=Eclipse&component=IDE&component=UI&list_id=5935738&product=Platform&query_format=advanced&target_milestone='$F_SEARCH'&query_based_on=&columnlist=bug_id%2Ctarget_milestone%2Cassigned_to%2Cbug_status%2Cresolution%2Cshort_desc%2Cbug_severity&ctype=csv'
 grep -v target_milestone search.csv >t1 ; mv t1 search.csv
 
 
@@ -29,7 +29,7 @@
 	SEV=$( echo $line | csvtool col 7 - )
 
 	echo '|-'
-	echo "| $PRE{{bug|$BUG}}$POST || $TARGET || $SEV || $ASSIGNED_TO || $STATUS || $TITLE"
+	echo "| $PRE{{bug|$BUG}}$POST || $TARGET || $SEV || $ASSIGNED_TO || $STATUS || $PRE$TITLE$POST"
 	BUG=""
 	TARGET=""
 	TITLE=""
@@ -42,6 +42,7 @@
 
 echo '|-'
 echo '|}'
+echo ""
 
 }