summaryrefslogtreecommitdiffstats
path: root/db/item.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2015-03-21 21:53:11 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2015-03-21 21:53:11 +0100
commit4ee93da76cc40c39ebbd494b979d4217857b32dc (patch)
tree4203e07d85e8d7632b32961d1be504c16b2f2ae5 /db/item.php
parent169ff3f3aa34382ae576ce2468b1961a203b49d7 (diff)
more style fixes
Diffstat (limited to 'db/item.php')
-rw-r--r--db/item.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/db/item.php b/db/item.php
index 23c68f2cd..3d12692bc 100644
--- a/db/item.php
+++ b/db/item.php
@@ -219,7 +219,9 @@ class Item extends Entity implements IAPI, \JsonSerializable {
public function setBody($body) {
// FIXME: this should not happen if the target="_blank" is already
// on the link
- parent::setBody(str_replace('<a', '<a target="_blank" rel="noreferrer"', $body));
+ parent::setBody(str_replace(
+ '<a', '<a target="_blank" rel="noreferrer"', $body
+ ));
}
}