Minor updates.
2002-08-06 Glynn Foster <glynn.foster@sun.com> * cgi-bin/membership-form-handler.cgi: Minor updates.
This commit is contained in:
parent
1ea4435c6c
commit
469fef8195
2 changed files with 16 additions and 4 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2002-08-06 Glynn Foster <glynn.foster@sun.com>
|
||||||
|
|
||||||
|
* cgi-bin/membership-form-handler.cgi: Minor updates.
|
||||||
|
|
||||||
2002-08-06 Glynn Foster <glynn.foster@sun.com>
|
2002-08-06 Glynn Foster <glynn.foster@sun.com>
|
||||||
|
|
||||||
* cgi-bin/membership-form-handler.cgi: Add backend for new checkbox.
|
* cgi-bin/membership-form-handler.cgi: Add backend for new checkbox.
|
||||||
|
|
|
@ -25,11 +25,11 @@ To: membership\@gnome.org (GNOME Membership Committee)
|
||||||
HEADER
|
HEADER
|
||||||
|
|
||||||
if ($FORM::previousmember == "on") {
|
if ($FORM::previousmember == "on") {
|
||||||
print MAIL "Subject: [RENEWAL] Application received from $FORM::name ($FORM::email)";
|
print MAIL "Subject: [RENEWAL] Application received from $FORM::name ($FORM::email)\n";
|
||||||
} else {
|
} else {
|
||||||
print MAIL "Subject: Application received from $FORM::name ($FORM::email)";
|
print MAIL "Subject: Application received from $FORM::name ($FORM::email)\n";
|
||||||
}
|
}
|
||||||
print MAIL <<END;
|
print MAIL <<CONTACT;
|
||||||
|
|
||||||
Contact Information:
|
Contact Information:
|
||||||
--------------------
|
--------------------
|
||||||
|
@ -37,7 +37,15 @@ Name: $FORM::name
|
||||||
E-mail: $FORM::email
|
E-mail: $FORM::email
|
||||||
irc.gnome.org nickname (if any): $FORM::ircnick
|
irc.gnome.org nickname (if any): $FORM::ircnick
|
||||||
cvs.gnome.org username (if any): $FORM::cvsuser
|
cvs.gnome.org username (if any): $FORM::cvsuser
|
||||||
Previous GNOME Foundation member: $FORM::previousmember
|
CONTACT
|
||||||
|
|
||||||
|
if ($FORM::previousmember == "on") {
|
||||||
|
print MAIL "Previous GNOME Foundation member: yes\n";
|
||||||
|
} else {
|
||||||
|
print MAIL "Previous GNOME Foundation member: no\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
print MAIL <<END;
|
||||||
|
|
||||||
GNOME contributions:
|
GNOME contributions:
|
||||||
--------------------
|
--------------------
|
||||||
|
|
Loading…
Reference in a new issue