summaryrefslogtreecommitdiff
path: root/classes/digest.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-03-26 08:08:50 +0300
committerAndrew Dolgov <[email protected]>2019-03-26 08:08:50 +0300
commit4e1eeb04884ef9bc43bfda408e6bbe0089c39cb8 (patch)
tree4b8054b96fe39abffffd9a29c16ccd267c902b68 /classes/digest.php
parent59d0e35b7d9f2e656f33052eca62b5bd7afef591 (diff)
digest text mode: fix article excerpt source
Diffstat (limited to 'classes/digest.php')
-rw-r--r--classes/digest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/digest.php b/classes/digest.php
index 68859d67c..197f11c99 100644
--- a/classes/digest.php
+++ b/classes/digest.php
@@ -193,7 +193,7 @@ class Digest
$tpl_t->setVariable('ARTICLE_UPDATED', $updated);
$tpl_t->setVariable('ARTICLE_LABELS', $article_labels_formatted, true);
$tpl_t->setVariable('ARTICLE_EXCERPT',
- truncate_string(strip_tags($line["excerpt"]), 300), true);
+ truncate_string(strip_tags($line["content"]), 300), true);
$tpl_t->addBlock('article');