summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-08-06 13:41:40 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-08-06 13:41:40 +0200
commit582dba7e944850d39316a15ef9e3297577fb936f (patch)
tree0d5a4dcd27202295327e49dd3ac17cf24dd423ba /templates
parent7f7dc6d86cbbaf251fb7c2dc3a46c94028d79eb6 (diff)
strip all html tags from author and title, fix #287
Diffstat (limited to 'templates')
-rw-r--r--templates/part.items.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/part.items.php b/templates/part.items.php
index f20e80c75..f9fc3805f 100644
--- a/templates/part.items.php
+++ b/templates/part.items.php
@@ -19,11 +19,11 @@
</ul>
</div>
- <h1 class="item_heading">{{ item.title|ocRemoveTags:['em', 'b', 'i'] }}</h1>
+ <h1 class="item_heading">{{ item.title }}</h1>
<h1 class="item_title">
<a ng-click="itemBusinessLayer.setRead(item.id)"
target="_blank" ng-href="{{ item.url|ocSanitizeURL }}">
- {{ item.title|ocRemoveTags:['em', 'b', 'i'] }}
+ {{ item.title }}
</a>
</h1>