aboutsummaryrefslogtreecommitdiffstats
path: root/include/text.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2019-02-21 08:48:47 +0100
committerMario Vavti <mario@mariovavti.com>2019-02-21 08:48:47 +0100
commita0ad110cff00bc9c506f5e6b921e5bd350f98f98 (patch)
treeb3ed221dfb003b9df9199ca0be7a6538cfff0879 /include/text.php
parent7f1e0313a0213de26b9c3cbd063348edd2cd14b8 (diff)
downloadvolse-hubzilla-a0ad110cff00bc9c506f5e6b921e5bd350f98f98.tar.gz
volse-hubzilla-a0ad110cff00bc9c506f5e6b921e5bd350f98f98.tar.bz2
volse-hubzilla-a0ad110cff00bc9c506f5e6b921e5bd350f98f98.zip
fix summary and use item_normal_search() for viewsrc so we can also view the source for articles, cards, etc.
Diffstat (limited to 'include/text.php')
-rw-r--r--include/text.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php
index b017b038a..ad5f84b54 100644
--- a/include/text.php
+++ b/include/text.php
@@ -1682,7 +1682,12 @@ function prepare_body(&$item,$attach = false,$opts = false) {
$s .= prepare_binary($item);
}
else {
- $s .= prepare_text($item['body'],$item['mimetype'], $opts);
+ if($item['summary']) {
+ $s .= prepare_text('[summary]' . $item['summary'] . '[/summary]' . $item['body'],$item['mimetype'],$opts);
+ }
+ else {
+ $s .= prepare_text($item['body'],$item['mimetype'], $opts);
+ }
}
$event = (($item['obj_type'] === ACTIVITY_OBJ_EVENT) ? format_event_obj($item['obj']) : false);