svn commit: r42072 - head/en_US.ISO8859-1/htdocs/cgi

Gavin Atkinson gavin at FreeBSD.org
Thu Jun 27 16:43:14 UTC 2013


Author: gavin
Date: Thu Jun 27 16:43:13 2013
New Revision: 42072
URL: http://svnweb.freebsd.org/changeset/doc/42072

Log:
  Revert r41532 for now - this appears to cause open tasks to be lost in
  certain circumstances.
  
  Reported by:	gabor

Modified:
  head/en_US.ISO8859-1/htdocs/cgi/monthly.cgi

Modified: head/en_US.ISO8859-1/htdocs/cgi/monthly.cgi
==============================================================================
--- head/en_US.ISO8859-1/htdocs/cgi/monthly.cgi	Thu Jun 27 00:33:34 2013	(r42071)
+++ head/en_US.ISO8859-1/htdocs/cgi/monthly.cgi	Thu Jun 27 16:43:13 2013	(r42072)
@@ -138,7 +138,6 @@ if ($Submit)
 	my @info = split("\n", $info);
 
 	my $title = "FreeBSD project submission output";
-	my $tasks = xml(1, "help", "", @tasks) if @tasks;
 
 	my @contents = xml(0, "project cat=\'$Category\'",
 	    xml(1, "title", $Project),
@@ -150,7 +149,7 @@ if ($Submit)
             xml(1, "body",
                 xml(2, "p", "", xmltext(3, @info))),
             "\n",
-            $tasks,
+            xml(1, "help", "", @tasks),
         );
 	my $contents = join('', @contents);
 


More information about the svn-doc-head mailing list