Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Jun 2013 16:43:14 +0000 (UTC)
From:      Gavin Atkinson <gavin@FreeBSD.org>
To:        doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org
Subject:   svn commit: r42072 - head/en_US.ISO8859-1/htdocs/cgi
Message-ID:  <201306271643.r5RGhEPZ004674@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201306271643.r5RGhEPZ004674>