From 8767dde3a5c252dfddfb750ad8cd3459d5e1e4a2 Mon Sep 17 00:00:00 2001
From: Holden Rohrer
Date: Sun, 29 Aug 2021 16:40:45 -0400
Subject: fixed the order of inputs for the pdf generation
---
orig/minimun | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
(limited to 'orig')
diff --git a/orig/minimun b/orig/minimun
index a61a4ca..2d1af8a 100644
--- a/orig/minimun
+++ b/orig/minimun
@@ -28,14 +28,14 @@ copy("%%DEST%%/format.tex",$fh);
print $fh "\n";
if (index($ENV{'PATH_INFO'},'award') != -1){
- say $fh "\\award{$FORM{'committee'}}{$FORM{'country'}}{$FORM{'award'}}{$FORM{'school'}}";
+ say $fh "\\award{$FORM{'country'}}{$FORM{'award'}}{$FORM{'committee'}}{$FORM{'school'}}";
}
elsif (index($ENV{'PATH_INFO'},'room') != -1){
say $fh "\\room{$FORM{'committee'}}";
}
else{
print "Content-type: text/html\n";
- print "Status: 404 File Not Found Error\n\n";
+ print "Status: 404 File Not Found Error\n\n";
print '404 Error. Go back.';
die;
}
--
cgit