diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-12-01 20:21:44 -0800 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-12-01 20:21:44 -0800 |
commit | 25caeee8547df73a7162dc6de30a030fa0bceea8 (patch) | |
tree | 85d169f19d137a960982c1c90125e78c7ac5e276 /include/items.php | |
parent | 20ce7a2d9f1173dac8d54fb05319036cc6f1d7f4 (diff) | |
download | volse-hubzilla-25caeee8547df73a7162dc6de30a030fa0bceea8.tar.gz volse-hubzilla-25caeee8547df73a7162dc6de30a030fa0bceea8.tar.bz2 volse-hubzilla-25caeee8547df73a7162dc6de30a030fa0bceea8.zip |
issue #204
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; |