From 944c0b6222859c3e0c4836016a5b2b4843e198b2 Mon Sep 17 00:00:00 2001 From: Jonas Oberg Date: Tue, 13 Jun 2017 12:32:43 +0200 Subject: [PATCH] Forgot ; :-) --- site/static/cgi/sign.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/static/cgi/sign.php b/site/static/cgi/sign.php index b07057f..dcd2cb9 100644 --- a/site/static/cgi/sign.php +++ b/site/static/cgi/sign.php @@ -159,7 +159,7 @@ if ($action === "sign") { $mail->setFrom('noreply@fsfe.org', 'Public Money, Public Code'); // Send email asking for confirmation - $mail->addAddress($email) + $mail->addAddress($email); $mail->Subject = "One step left to sign the \"Public Money - Public Code\" letter"; $mail->Body = "Dear $name, \r\n\r\n" . "Thank you for signing the open \"Public Money - Public Code\" letter! \r\n\r\n" . @@ -167,7 +167,7 @@ if ($action === "sign") { "$selfurl?action=confirm&id=$codeid&code=$code \r\n\r\n" . "If your confirmation succeeds, your signature will appear on the website within the next few hours."; - $mail->Send() + $mail->Send(); $output .= "Thank you for signing our open letter!

"; $output .= "We just sent an email to your address ($email) for you to confirm your signature.";