Fix missing reply text by renaming replyText to sReplyText
This commit is contained in:
@@ -193,7 +193,7 @@ class Bug {
|
||||
{
|
||||
$aClean = array(); //array of filtered user input
|
||||
|
||||
$aClean['replyText'] = makeSafe($_REQUEST['replyText']);
|
||||
$aClean['sReplyText'] = makeSafe($_REQUEST['sReplyText']);
|
||||
|
||||
if($this->iSubmitterId)
|
||||
{
|
||||
@@ -208,7 +208,7 @@ class Bug {
|
||||
$sSubject = "Submitted Bug Link rejected";
|
||||
$sMsg = "The Bug Link you submitted for ".$sAppName." has been rejected.";
|
||||
}
|
||||
$sMsg .= $aClean['replyText']."\n";
|
||||
$sMsg .= $aClean['sReplyText']."\n";
|
||||
$sMsg .= "We appreciate your help in making the Application Database better for all users.";
|
||||
|
||||
mail_appdb($oSubmitter->sEmail, $sSubject ,$sMsg);
|
||||
|
||||
Reference in New Issue
Block a user