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

@@ -339,7 +339,7 @@ class User {
{
$aClean = array();
$aClean['replyText'] = makeSafe($_REQUEST['replyText']);
$aClean['sReplyText'] = makeSafe($_REQUEST['sReplyText']);
/* if the user isn't already a supermaintainer of the application and */
/* if they are trying to become a maintainer and aren't already a maintainer of */
@@ -367,7 +367,7 @@ class User {
{
$sSubject = "Application Maintainer Request Report";
$sMsg = "Your application to be the maintainer of ".$oApp->sName." ".$oVersion->sName." has been accepted. ";
$sMsg .= $aClean['replyText'];
$sMsg .= $aClean['sReplyText'];
$sMsg .= "We appreciate your help in making the Application Database better for all users.\n\n";
mail_appdb($sEmail, $sSubject ,$sMsg);