diff --git a/lib/subscriptions/AlertContent.inc b/lib/subscriptions/AlertContent.inc
index 35b7b34..1e4118f 100644
--- a/lib/subscriptions/AlertContent.inc
+++ b/lib/subscriptions/AlertContent.inc
@@ -35,27 +35,27 @@ class AlertContent {
$aAlertContent = array(SubscriptionConstants::subscriptionAlertType("AddFolder") =>
"A new folder '" . $aValues["newFolderName"] . "' has been added to folder '" . $aValues["parentFolderName"] . "'.
" .
"Please clear this subscription alert by clicking on the following link: " .
- "" . $aValues["parentFolderName"] . "",
+ "" . $aValues["parentFolderName"] . "",
SubscriptionConstants::subscriptionAlertType("RemoveFolder") =>
"The folder '" . $aValues["removedFolderName"] . "' has been removed from folder '" . $aValues["parentFolderName"] . "'.
" .
"Please clear this subscription alert by clicking on the following link: " .
- "" . $aValues["parentFolderName"] . "",
+ "" . $aValues["parentFolderName"] . "",
SubscriptionConstants::subscriptionAlertType("AddDocument") =>
"A new document '" . $aValues["newDocumentName"] . "' has been added to folder '" . $aValues["folderName"] . "'.
" .
"Please clear this subscription alert by clicking on the following link: " .
- "" . $aValues["newDocumentName"] . "",
+ "" . $aValues["newDocumentName"] . "",
SubscriptionConstants::subscriptionAlertType("RemoveDocument") =>
"The document '" . $aValues["removedDocumentName"] . "' has been removed from folder '" . $aValues["folderName"] . "'.
" .
"Please clear this subscription alert by clicking on the following link: " .
- "" . $aValues["folderName"] . "",
+ "" . $aValues["folderName"] . "",
SubscriptionConstants::subscriptionAlertType("ModifyDocument") =>
"The document '" . $aValues["modifiedDocumentName"] . "' has been modified.
" .
"Please clear this subscription alert by clicking on the following link: " .
- "" . $aValues["modifiedDocumentName"] . "");
+ "" . $aValues["modifiedDocumentName"] . "");
return array ("subject" => $aAlertSubject[$iSubscriptionAlertType],
"text" => "Hello " . $aValues["subscriberName"] . "
" . $aAlertContent[$iSubscriptionAlertType]);