diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-12-02 09:44:42 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-12-02 09:44:42 +0100 |
commit | 857e13e9b8ee4fe2c27cd9737f0396cb669cb8ad (patch) | |
tree | 2f5efa0bee35763b066919f0048208f5de4726c2 /include/items.php | |
parent | 593423434c0c0e8d1ebb43d97b2dda7e6b4d67bd (diff) | |
parent | 25caeee8547df73a7162dc6de30a030fa0bceea8 (diff) | |
download | volse-hubzilla-857e13e9b8ee4fe2c27cd9737f0396cb669cb8ad.tar.gz volse-hubzilla-857e13e9b8ee4fe2c27cd9737f0396cb669cb8ad.tar.bz2 volse-hubzilla-857e13e9b8ee4fe2c27cd9737f0396cb669cb8ad.zip |
Merge branch 'master' of https://github.com/redmatrix/hubzilla
Diffstat (limited to 'include/items.php')
-rwxr-xr-x | include/items.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php index 46b396ad2..ef1867c14 100755 --- a/include/items.php +++ b/include/items.php @@ -3474,7 +3474,7 @@ function post_is_importable($item,$abook) { unobscure($item); $text = prepare_text($item['body'],$item['mimetype']); - $text = html2plain($text); + $text = html2plain(($item['title']) ? $item['title'] . ' ' . $text : $text); $lang = null; |