aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMax Kostikov <max@kostikov.co>2019-11-06 16:08:36 +0100
committerMax Kostikov <max@kostikov.co>2019-11-06 16:08:36 +0100
commit2875ee2423380dbe3a50aa2e9cae88c59600afe8 (patch)
treef462728e64796f257246e0c76886782dbcc633d6 /include
parent36f707b25ee04f3641c5d13290cc6297e28b1f47 (diff)
downloadvolse-hubzilla-2875ee2423380dbe3a50aa2e9cae88c59600afe8.tar.gz
volse-hubzilla-2875ee2423380dbe3a50aa2e9cae88c59600afe8.tar.bz2
volse-hubzilla-2875ee2423380dbe3a50aa2e9cae88c59600afe8.zip
Update feedutils.php
Diffstat (limited to 'include')
-rw-r--r--include/feedutils.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/feedutils.php b/include/feedutils.php
index e7fcad02a..43986fb02 100644
--- a/include/feedutils.php
+++ b/include/feedutils.php
@@ -437,15 +437,15 @@ function get_atom_elements($feed, $item) {
if($summary === $res['body'])
$summary = '';
else {
- $res['title'] = bbcode($res['title'], [ 'tryoembed' => false ]);
- $res['title'] = html2plain($res['title'], 0, true);
- $res['title'] = html_entity_decode($res['title'], ENT_QUOTES, 'UTF-8');
- $res['title'] = preg_replace("/https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,\@]+/", "", $res['title']);
- while (strpos($res['title'], "\n") !== false)
- $res['title'] = str_replace("\n", " ", $res['title']);
- while (strpos($res['title'], " ") !== false)
- $res['title'] = str_replace(" ", " ", $res['title']);
- $res['title'] = trim($res['title']);
+ $res['title'] = bbcode($res['title'], [ 'tryoembed' => false ]);
+ $res['title'] = html2plain($res['title'], 0, true);
+ $res['title'] = html_entity_decode($res['title'], ENT_QUOTES, 'UTF-8');
+ $res['title'] = preg_replace("/https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,\@]+/", "", $res['title']);
+ while (strpos($res['title'], "\n") !== false)
+ $res['title'] = str_replace("\n", " ", $res['title']);
+ while (strpos($res['title'], " ") !== false)
+ $res['title'] = str_replace(" ", " ", $res['title']);
+ $res['title'] = trim($res['title']);
}