зеркало из https://github.com/nextcloud/news.git
remove em, b and i tags from title fix #88
This commit is contained in:
Родитель
d1ef5aab3c
Коммит
c5537fcecc
|
@ -21,7 +21,9 @@
|
|||
|
||||
<h1 class="item_title">
|
||||
<a ng-click="itemBusinessLayer.setRead(item.id)"
|
||||
target="_blank" href="{{ item.url }}">{{ item.title }}</a>
|
||||
target="_blank" href="{{ item.url }}">
|
||||
{{ item.title|ocRemoveTags:['em'] }}
|
||||
</a>
|
||||
</h1>
|
||||
|
||||
<h2 class="item_author">
|
||||
|
|
|
@ -74,10 +74,7 @@ class FeedFetcher implements IFeedFetcher {
|
|||
throw new FetcherException('Could not initialize simple pie');
|
||||
}
|
||||
|
||||
// temporary try-catch to bypass SimplePie bugs
|
||||
try {
|
||||
$simplePie->handle_content_type();
|
||||
|
||||
$items = array();
|
||||
if ($feedItems = $simplePie->get_items()) {
|
||||
foreach($feedItems as $feedItem) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче