Fix missing reply text by renaming replyText to sReplyText

This commit is contained in:
Jonathan Ernst
2006-07-13 18:54:10 +00:00
committed by WineHQ
parent 04e7fa9906
commit a4e384604b
9 changed files with 53 additions and 53 deletions

View File

@@ -182,7 +182,7 @@ class Url {
{
$aClean = array(); //array of filtered user input
$aClean['replyText'] = makeSafe($_REQUEST['replyText']);
$aClean['sReplyText'] = makeSafe($_REQUEST['sReplyText']);
if($this->iSubmitterId)
{
$sAppName = Application::lookup_name($this->appId)." ".Version::lookup_name($this->versionId);
@@ -196,7 +196,7 @@ class Url {
$sSubject = "Submitted url rejected";
$sMsg = "The url 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);