diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-08-04 15:59:18 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-08-04 15:59:18 -0700 |
commit | a61fc00fa495e144fbfadb354b7b82c3abc4b721 (patch) | |
tree | 7f21161c01de123757db4a760df99b41c16af33a /include | |
parent | 56045093cc6674dfd89e0a2c3848c3e2992b3790 (diff) | |
download | volse-hubzilla-a61fc00fa495e144fbfadb354b7b82c3abc4b721.tar.gz volse-hubzilla-a61fc00fa495e144fbfadb354b7b82c3abc4b721.tar.bz2 volse-hubzilla-a61fc00fa495e144fbfadb354b7b82c3abc4b721.zip |
unobscure item before applying connection filter
Diffstat (limited to 'include')
-rwxr-xr-x | include/items.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/items.php b/include/items.php index a14e47e0f..856954a57 100755 --- a/include/items.php +++ b/include/items.php @@ -3377,6 +3377,9 @@ function post_is_importable($item,$abook) { return true; require_once('include/html2plain.php'); + + unobscure($item); + $text = prepare_text($item['body'],$item['mimetype']); $text = html2plain($text); |