From 77e623b59f248d38c756bda7670e7eb18b214efc Mon Sep 17 00:00:00 2001 From: Chris Morgan Date: Sat, 1 Oct 2005 00:33:01 +0000 Subject: [PATCH] Improve the version rejection message to be like the application rejection one --- include/version.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/version.php b/include/version.php index ee618f4..d6ad011 100644 --- a/include/version.php +++ b/include/version.php @@ -401,7 +401,9 @@ class Version { case "reject": { $sSubject = "Submitted version rejected"; - $sMsg = "The version you submitted (".$oApp->sName." ".$this->sName.") has been rejected."; + $sMsg = "The version you submitted (".$oApp->sName." ".$this->sName.") has been rejected. "; + $sMsg .= "Clicking on the link in this email will allow you to modify and resubmit the version. "; + $sMsg .= "A link to your queue of applications and versions will also show up on the left hand side of the Appdb site once you have logged in. "; $sMsg .= APPDB_ROOT."admin/resubmitRejectedApps.php?sub=view&versionId=".$this->iVersionId."\n"; $sMsg .= "Reason given:\n"; $sMsg .= $_REQUEST['replyText']."\n"; /* append the reply text, if there is any */