From da71f90c5be4a74b6078e9db580f0df49e95d1e6 Mon Sep 17 00:00:00 2001 From: Unick Soft Date: Thu, 12 Oct 2017 23:31:57 +0300 Subject: [PATCH] Fix parameter --- cgi-bin/sendEmail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cgi-bin/sendEmail.php b/cgi-bin/sendEmail.php index d600c6a..1bdb991 100644 --- a/cgi-bin/sendEmail.php +++ b/cgi-bin/sendEmail.php @@ -7,7 +7,7 @@ $mymail = "soft_support@list.ru"; header('Content-type: text/html; charset=utf-8'); -$text = "New Algorithm!\n" . $_POST["text"]; +$text = "New Algorithm!\n" . $_GET["text"]; $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/plain; charset=utf-8' . "\r\n";