diff options
-rw-r--r-- | sitesummary-collector.cgi | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/sitesummary-collector.cgi b/sitesummary-collector.cgi index e4217cd..778e85c 100644 --- a/sitesummary-collector.cgi +++ b/sitesummary-collector.cgi @@ -4,12 +4,7 @@ # sitesummary submission. # # Handle three different submission methods -# - simple post message, where the complete body is the popcon report -# (used by popcon version 1.30). -# - mime-encoded upload with report in compressed form (used by -# popcon version 1.31 and newer). -# - mime-encoded upload with report in uncompressed form (used by -# ubuntu popcon). +# - mime-encoded upload with sitesummary report in compressed form use strict; use CGI; @@ -65,7 +60,7 @@ Unsupported submission method. EOF } -open(SITESUMMARY, "$basedir/storage") or die "Unable to pipe to prepop.pl"; +open(SITESUMMARY, "$basedir/storage") or die "Unable to write to storage"; print SITESUMMARY @entry; close SITESUMMARY; |