From 42b6c87c7bb830efe9a18eca1ff650909d5994a0 Mon Sep 17 00:00:00 2001 From: Tony Lambregts Date: Thu, 27 Apr 2006 01:44:57 +0000 Subject: [PATCH] Add a message to the app/version deletion email to clarify deletions due the app/version being moved --- admin/adminAppQueue.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/admin/adminAppQueue.php b/admin/adminAppQueue.php index 53ed83a..e0f1e92 100644 --- a/admin/adminAppQueue.php +++ b/admin/adminAppQueue.php @@ -208,6 +208,7 @@ if ($_REQUEST['sub']) $oVersion->update(); /* delete the appId that is the duplicate */ + $_REQUEST['replyText'] = "Your Vesion information was moved to an existing Application"; $oAppDelete = new Application($oApp->iAppId); $oAppDelete->delete(); } @@ -224,6 +225,7 @@ if ($_REQUEST['sub']) $oTest->update(); // delete the Version entry + $_REQUEST['replyText'] = "Your Test results were moved to existing version"; $oVersion = new Version($_REQUEST['versionId']); $oVersion->delete(); }