summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/functions.php b/functions.php
index 2303f54ad..ab03832b0 100644
--- a/functions.php
+++ b/functions.php
@@ -3231,7 +3231,7 @@
}
$mail->IsHTML(true);
- $mail->Subject = "[tt-rss] New headlines for last 24 hours";
+ $mail->Subject = DIGEST_SUBJECT;
$mail->Body = $digest;
$mail->AltBody = $digest_text;
@@ -3323,8 +3323,8 @@
$tpl->setVariable('ARTICLE_TITLE', $line["title"]);
$tpl->setVariable('ARTICLE_LINK', $line["link"]);
$tpl->setVariable('ARTICLE_UPDATED', $updated);
-// $tpl->setVariable('ARTICLE_EXCERPT',
-// truncate_string(strip_tags($line["excerpt"]), 100));
+ $tpl->setVariable('ARTICLE_EXCERPT',
+ truncate_string(strip_tags($line["excerpt"]), 100));
$tpl->addBlock('article');